/**
 * Cookie Consent Banner Styles
 * HiZappy rendszer cookie banner stílusai
 */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid #dee2e6;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 1rem;
    transition: opacity 0.3s ease;
    transform: translateZ(0);
    will-change: opacity;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-consent-text h5 {
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-consent-text h5 i {
    color: #28a745;
    margin-right: 0.5rem;
}

.cookie-consent-text p {
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-consent-options {
    margin-bottom: 1rem;
}

.cookie-consent-options .form-check {
    margin-bottom: 0.5rem;
}

.cookie-consent-options .form-check-label {
    font-size: 0.9rem;
    color: #495057;
}

.cookie-consent-options .form-check-input:disabled {
    opacity: 0.6;
}

.cookie-consent-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.cookie-consent-buttons .btn {
    font-size: 0.85rem;
    padding: 0.375rem 0.75rem;
}

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

.cookie-consent-links a {
    color: #6c757d;
    font-size: 0.8rem;
}

.cookie-consent-links a:hover {
    color: #495057;
}

/* Responsive design */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 0.75rem;
    }
    
    .cookie-consent-text h5 {
        font-size: 1rem;
    }
    
    .cookie-consent-text p {
        font-size: 0.85rem;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
    }
    
    .cookie-consent-buttons .btn {
        width: 100%;
        margin-bottom: 0.25rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .cookie-consent-banner {
        background: rgba(33, 37, 41, 0.98);
        border-top-color: #495057;
    }
    
    .cookie-consent-text h5 {
        color: #f8f9fa;
    }
    
    .cookie-consent-text p {
        color: #adb5bd;
    }
    
    .cookie-consent-options .form-check-label {
        color: #f8f9fa;
    }
    
    .cookie-consent-links a {
        color: #adb5bd;
    }
    
    .cookie-consent-links a:hover {
        color: #f8f9fa;
    }
} 