/* Cookie Consent Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2A3F54 0%, #1C2E3E 100%);
    color: white;
    padding: 1rem 0;
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Add animation for cookie banner */
@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-consent-banner.show {
    animation: slideUp 0.5s ease forwards;
}

/* Improve button hover states */
.cookie-consent-banner .btn {
    transition: all 0.3s ease;
}

.cookie-consent-banner .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cookie-setting-item {
    padding: 1rem;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
}

.cookie-setting-item:last-child {
    margin-bottom: 0;
}

.form-switch .form-check-input {
    width: 3em;
    height: 1.5em;
    cursor: pointer;
}

.form-switch .form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

/* Update button styles for better contrast */
.cookie-consent-banner .btn-outline-light {
    border-width: 2px;
    font-weight: 500;
}

.cookie-consent-banner .btn-gradient {
    background: linear-gradient(135deg, #4CAF50 0%, #45A049 100%);
    border: none;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cookie-consent-banner .btn-gradient:hover {
    background: linear-gradient(135deg, #45A049 0%, #3D8B40 100%);
    transform: translateY(-1px);
} 