/* Cookie Consent Banner Styles */
#consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    animation: slideUp 0.3s ease;
}

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

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

.consent-text {
    flex: 1;
    min-width: 300px;
}

.consent-text h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.consent-text p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.consent-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.consent-btn:hover {
    transform: translateY(-2px);
}

.btn-accept-all {
    background: #4CAF50;
    color: white;
}

.btn-accept-all:hover {
    background: #45a049;
}

.btn-reject {
    background: #f44336;
    color: white;
}

.btn-reject:hover {
    background: #da190b;
}

.btn-customize {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-customize:hover {
    background: rgba(255,255,255,0.1);
}

#consent-settings {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.settings-modal {
    background: white;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    width: 90%;
}

.settings-modal h2 {
    margin-top: 0;
}

.consent-option {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.consent-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.consent-option input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.consent-option-info {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
    margin-left: 30px;
}

.settings-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
