#cookieConsentBanner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif);
    opacity: 0;
    transition: opacity 0.3s ease;
}
#cookieConsentBanner.show {
    display: flex;
    opacity: 1;
}
.cookie-modal {
    background: #fff;
    width: 90%;
    max-width: 800px;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.6;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
#cookieConsentBanner.show .cookie-modal {
    transform: translateY(0);
}
.cookie-modal p {
    margin-bottom: 20px;
}
.cookie-modal p:last-of-type {
    margin-bottom: 0;
}
.cookie-modal a {
    color: var(--primary, #1891ca);
    text-decoration: underline;
    font-weight: 700;
}
.cookie-modal a:hover {
    text-decoration: none;
}
.cookie-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
}
.cookie-buttons-left {
    display: flex;
}
.cookie-buttons-right {
    display: flex;
    gap: 15px;
}
.btn-cookie {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-cookie:active {
    transform: translateY(1px);
}
.btn-cookie-link {
    background: transparent;
    color: var(--primary, #1891ca);
    text-decoration: underline;
    padding: 12px 0;
    box-shadow: none;
}
.btn-cookie-link:hover {
    text-decoration: none;
}
.btn-cookie-link:active {
    transform: none;
}
.btn-cookie-reject {
    background: #555B61;
    color: #fff;
}
.btn-cookie-reject:hover {
    background: #41454a;
}
.btn-cookie-accept {
    background: var(--primary, #1891ca);
    color: #fff;
}
.btn-cookie-accept:hover {
    background: var(--primary-hover, #12719f);
}

@media (max-width: 768px) {
    .cookie-modal {
        padding: 25px;
    }
    .cookie-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        margin-top: 25px;
    }
    .cookie-buttons-right {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .btn-cookie {
        width: 100%;
        text-align: center;
    }
    .btn-cookie-link {
        text-align: center;
    }
}
