/* ========================================
   Cookie Consent Banner Stylesheet
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2c3e50;
    color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    max-width: 380px;
    font-size: 0.95em;
    z-index: 9999;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(450px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cookie-banner h3 {
    margin: 0 0 15px 0;
    font-size: 1.1em;
    color: white;
}

.cookie-banner p {
    margin: 0 0 15px 0;
    line-height: 1.5;
    font-size: 0.9em;
}

.cookie-banner a {
    color: #3498db;
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.cookie-btn {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 0.9em;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-btn-accept {
    background: #27ae60;
    color: white;
}

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

.cookie-btn-reject {
    background: #95a5a6;
    color: white;
}

.cookie-btn-reject:hover {
    background: #7f8c8d;
}

.cookie-banner.hidden {
    display: none;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
