/* Main css */

.active-input {
    border-color: #9333EA;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.numpad-btn {
    transition: all 0.1s;
}

.numpad-btn:active {
    transform: scale(0.95);
}

.selection-btn {
    transition: all 0.2s;
}

.selection-btn.active {
    background-color: #9333EA;
    color: white;
}

.selection-card {
    transition: all 0.3s ease;
    transform: scale(1);
}

.selection-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.selection-card:active {
    transform: scale(0.98);
}

.bpjs-gradient {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.non-bpjs-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.checkin-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Main css */

/* Loading css */

.modal-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    padding-top: 30%;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.4);
}

/* Loading css */
