@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

#setup-toggle .material-symbols-rounded {
    animation: pulse 1s ease-in-out infinite;
}

#setup-drawer {
    position: fixed;
    top: 0;
    right: -375px;
    width: 375px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 10000;
    overflow-y: auto;
}

#setup-drawer.open {
    right: 0;
}

#drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    display: none;
}

#drawer-overlay.show {
    display: block;
}

.setup-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.setup-item:last-child {
    border-bottom: none;
}

.form-check-input:checked {
    background-color: #00838F;
    border-color: #00838F;
}

.setup-item .form-check-input:checked:disabled ~ .form-check-label {
    opacity: 1 !important;
    color: #212529 !important;
}

.setup-item .form-check-label a:hover {
    color: #007c89 !important;
}
