/* public/assets/css/custom.css */

/* Additional custom styles if needed */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Smooth transitions for all elements */
* {
    transition: all 0.3s ease;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #844c21;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6d3e1b;
}