/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    display: none;
    animation: slideUp 0.5s ease-out;
    border-top: 3px solid #007bff;
}

.cookie-consent-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-consent-text {
    flex: 1;
    color: #374151;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-consent-text p {
    margin: 0 0 8px 0;
}

.cookie-consent-text a {
    color: #007bff;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #0056b3;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept-btn {
    background-color: #007bff;
    color: #ffffff;
}

.cookie-accept-btn:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.cookie-decline-btn {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-decline-btn:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
}

.cookie-settings-btn {
    background-color: transparent;
    color: #007bff;
    border: 1px solid #007bff;
}

.cookie-settings-btn:hover {
    background-color: #007bff;
    color: #ffffff;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .cookie-consent-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        padding: 15px;
    }

    .cookie-consent-text {
        font-size: 12px;
    }

    .cookie-consent-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}
