.tpozyka-app-entry[hidden] {
    display: none !important;
}

.tpozyka-app-entry {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    font-family: inherit;
}

.tpozyka-app-entry__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 100%;
    padding: 10px 12px;
}

.tpozyka-app-entry__close {
    border: 0;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    flex-shrink: 0;
    padding: 4px;
}

.tpozyka-app-entry__head {
    display: flex;
    gap: 12px;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.tpozyka-app-entry__icon {
    flex: 0 0 48px;
    border-radius: 12px;
    object-fit: cover;
}

.tpozyka-app-entry__content {
    min-width: 0;
    overflow: hidden;
}

.tpozyka-app-entry__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
    margin-bottom: 4px;
}

.tpozyka-app-entry__text {
    font-size: 14px;
    line-height: 1.4;
    color: #999999;
}

.tpozyka-app-entry__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.tpozyka-app-entry__btn {
    appearance: none;
    border: 0;
    border-radius: 50px;
    padding: 4px 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.tpozyka-app-entry__btn--primary {
    background: #0088FF;
    color: #fff;
}

.tpozyka-app-entry__btn--secondary {
    background: #f1f1f1;
    color: #111;
}

.tpozyka-app-entry__btn--ghost {
    background: transparent;
    color: #666;
    padding-left: 0;
    padding-right: 0;
}

html.tpozyka-app-entry-visible {
    scroll-padding-top: 80px;
}

body.tpozyka-app-entry-visible {
    padding-top: 68px;
}

@media (min-width: 768px) {
    .tpozyka-app-entry {
        display: none !important;
    }

    body.tpozyka-app-entry-visible {
        padding-top: 0;
    }
}