﻿.cookie-consent-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1055;
    max-width: 980px;
    margin: 0 auto;
    border: 1px solid rgba(102, 126, 234, 0.25);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(19, 28, 54, 0.18);
    backdrop-filter: blur(8px);
}

.cookie-consent-banner__content {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
}

.cookie-consent-banner__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #1f2b52;
    font-size: 0.92rem;
    line-height: 1.35;
}

.cookie-consent-banner__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

html[data-bs-theme="dark"] .cookie-consent-banner {
    border-color: rgba(131, 152, 255, 0.28);
    background: rgba(18, 26, 44, 0.92);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

html[data-bs-theme="dark"] .cookie-consent-banner__text {
    color: #dbe4ff;
}

@media (max-width: 767px) {
    .cookie-consent-banner__content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-banner__actions {
        width: 100%;
    }

    .cookie-consent-banner__actions .btn {
        width: 100%;
    }
}
