/* ClickTran custom styles */

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.card {
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

/* Dashboard sidebar active state */
.nav-active {
    background-color: #eff6ff;
    color: #1d4ed8;
    font-weight: 600;
}

/* Simple form focus */
input:focus, select:focus, textarea:focus {
    outline: none;
}

/* Loading spinner */
.spinner {
    border: 2px solid #e5e7eb;
    border-top-color: #3b82f6;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 0.6s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
