.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    border-top: 1px solid #eee;
    font-size: 14px;
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #0056b3;
}

.cookie-header i {
    color: #0056b3;
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.cookie-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.privacy-notice-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}

.privacy-notice-section p {
    color: #666;
    line-height: 1.5;
    margin: 0.5rem 0;
}

.cookie-separator {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 1.5rem 0;
}



.cookie-body {
    margin-bottom: 1.5rem;
}

.cookie-body p {
    margin: 0 0 1rem 0;
    line-height: 1.5;
    color: #666;
}

.cookie-preferences {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.cookie-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface-color);
    border-radius: 8px;
    border: 1px solid #eee;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .switch-slider {
    background-color: #0056b3;
}

input:disabled + .switch-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

input:checked + .switch-slider:before {
    transform: translateX(24px);
}

.cookie-group-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.cookie-group-info p {
    margin: 0.25rem 0 0;
    font-size: 0.875rem;
    color: #666;
}

.cookie-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.cookie-links {
    display: flex;
    gap: 1rem;
}

.cookie-link {
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-link:hover {
    color: #0056b3;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-cookie {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-cookie.primary {
    background: #0056b3;
    color: white;
}

.btn-cookie.primary:hover {
    background: #004494;
}

.btn-cookie.secondary {
    background: var(--surface-color);
    border: 1px solid #dee2e6;
    color: #333;
}

.btn-cookie.secondary:hover {
    background: #e9ecef;
}

.btn-cookie.tertiary {
    background: transparent;
    color: #666;
}

.btn-cookie.tertiary:hover {
    color: #333;
}

@media (max-width: 768px) {
    .cookie-content {
        padding: 1rem;
    }

    .cookie-footer {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-links {
        flex-direction: column;
        align-items: center;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie {
        width: 100%;
        justify-content: center;
    }
}
