/* Cookie Compliance Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    animation: slideUp 0.3s ease-out;
}

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

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

.cookie-notice-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    min-width: 250px;
}

.cookie-notice-link {
    color: #3498db;
    text-decoration: underline;
    margin-left: 5px;
}

.cookie-notice-link:hover {
    color: #5dade2;
}

.cookie-notice-btn {
    background: #27ae60;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s, transform 0.08s;
    white-space: nowrap;
    min-width: 120px;
}

.cookie-notice-btn:hover {
    background: #2ecc71;
}

.cookie-notice-btn:active {
    transform: translateY(1px);
}

/* Reject button style (secondary) */
.cookie-notice-btn.cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}
.cookie-notice-btn.cookie-reject:hover {
    background: rgba(255,255,255,0.06);
}

/* Actions container */
.cookie-notice-actions {
    display:flex;
    gap:8px;
    align-items:center;
}
.cookie-notice-action-form { margin:0; display:inline-flex; }
.cookie-notice-action-form .cookie-notice-btn { width: auto; }

/* Responsive: keep buttons side-by-side but allow shrinking on small screens */
@media (max-width: 420px) {
    .cookie-notice-actions {
        justify-content:center;
    }
    .cookie-notice-action-form .cookie-notice-btn { min-width: 0; padding: 8px 12px; font-size:13px; }
}

/* Responsive */
@media (max-width: 600px) {
    .cookie-notice {
        padding: 12px 15px;
    }
    
    .cookie-notice-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-notice-text {
        font-size: 13px;
        text-align: center;
    }
    
    .cookie-notice-btn {
        width: 100%;
    }
}
