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

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

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

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

.cookie-consent-text {
    flex: 1;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: #1a73e8;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #0d47a1;
}

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

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

.cookie-consent-btn-accept {
    background: #1a73e8;
    color: white;
}

.cookie-consent-btn-accept:hover {
    background: #0d47a1;
}

.cookie-consent-btn-decline {
    background: #f3f4f6;
    color: #4b5563;
}

.cookie-consent-btn-decline:hover {
    background: #e5e7eb;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 16px;
    }

    .cookie-consent-container {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-consent-text {
        text-align: center;
    }

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

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