/* Custom CSS for GestMaintRec */

/* Add any custom styles here that complement Tailwind CSS */

/* Example: Custom focus styles */
input:focus {
    outline: none;
}

/* Smooth transitions for interactive elements */
a, button {
    transition: all 0.15s ease-in-out;
}

/* Custom scrollbar (optional) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
