/* Licitar custom CSS - minimal, Tailwind handles most */
* { box-sizing: border-box; }

/* Smooth transitions */
a, button { transition: all 0.15s ease; }

/* Table improvements */
th { white-space: nowrap; }

/* Fix for mobile sidebar animation */
#sidebar {
    transition: transform 0.2s ease-in-out;
}

/* Wizard progress bar fix */
.wizard-step-active .step-circle {
    border-color: #4f46e5;
    color: #4f46e5;
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid #4f46e5;
    outline-offset: 2px;
}

/* Toggle switch */
.peer:checked ~ .peer-checked\:bg-yellow-500 {
    background-color: #eab308;
}
.peer:checked ~ div.after\:translate-x-full::after {
    transform: translateX(100%);
}
