/* Minimal custom styles on top of Tailwind */

/* Smooth transitions for all interactive elements */
a, button, input, select {
    transition: all 0.15s ease;
}

/* Focus ring consistency */
input:focus, select:focus, textarea:focus {
    outline: none;
}

/* Table styling refinements */
table {
    border-collapse: collapse;
    width: 100%;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}
