/* Custom styles that can't be easily done with Tailwind */
#entryForm {
    transition: all 0.3s ease;
}

#entriesContainer {
    transition: all 0.3s ease;
}
/* Login page styles */
.login-container {
    max-width: 400px;
    margin: 0 auto;
}

/* Analytics charts */
.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

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

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

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

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

/* Range input styling */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ef4444;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ef4444;
    cursor: pointer;
}