/* Cookie Consent Banner Styles */

#cookie-consent-banner {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: #080a10 !important;
    border-top: 2px solid rgba(125, 211, 252, 0.5) !important;
    padding: 1.5rem !important;
    z-index: 10000 !important;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8) !important;
    opacity: 1 !important;
}

#cookie-preferences-modal {
    background: #000000 !important;
    opacity: 1 !important;
}

#cookie-preferences-modal > div {
    background: #080a10 !important;
    opacity: 1 !important;
}

#cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 250px;
}

.cookie-consent-text strong {
    color: #7dd3fc;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-consent-text p {
    color: #cbd5f5;
    margin: 0;
    line-height: 1.6;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.cookie-btn-accept {
    background: #00AA00;
    color: white;
}

.cookie-btn-accept:hover {
    background: #008800;
}

.cookie-btn-decline {
    background: #dc2626;
    color: #ffffff;
    border: 2px solid #dc2626;
}

.cookie-btn-decline:hover {
    background: #b91c1c;
    border-color: #b91c1c;
}

.cookie-link {
    color: #7dd3fc;
    text-decoration: underline;
    font-size: 0.9rem;
}

.cookie-link:hover {
    color: #bae6fd;
}

/* Cookie Preferences Modal Styles */
#cookie-preferences-modal {
    display: none;
}

#cookie-preferences-modal[style*="flex"] {
    display: flex !important;
}

#cookie-preferences-modal form label {
    transition: background-color 0.2s;
}

#cookie-preferences-modal form label:hover {
    background: rgba(125, 211, 252, 0.15) !important;
}

#cookie-preferences-modal input[type="checkbox"] {
    accent-color: #7dd3fc;
}

#cookie-preferences-modal input[type="checkbox"]:checked {
    accent-color: #00AA00;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    
    #cookie-preferences-modal > div {
        margin: 20px !important;
        padding: 20px !important;
        max-width: calc(100% - 40px) !important;
    }
}

