/* Basic styling for the body */
body {
    font-family: 'Inter', sans-serif;
}

/* Styling for the strength meter progress bar (if you decide to add it back) */
progress::-webkit-progress-bar {
    background-color: #e5e7eb; /* gray-200 */
    border-radius: 0.375rem; /* rounded-md */
}

progress.bg-red-500::-webkit-progress-value { background-color: #ef4444; }
progress.bg-red-400::-webkit-progress-value { background-color: #f87171; }
progress.bg-yellow-400::-webkit-progress-value { background-color: #fbbf24; }
progress.bg-green-400::-webkit-progress-value { background-color: #4ade80; }
progress.bg-green-600::-webkit-progress-value { background-color: #16a34a; }

progress::-moz-progress-bar {
    border-radius: 0.375rem; /* rounded-md */
}

progress.bg-red-500::-moz-progress-bar { background-color: #ef4444; }
progress.bg-red-400::-moz-progress-bar { background-color: #f87171; }
progress.bg-yellow-400::-moz-progress-bar { background-color: #fbbf24; }
progress.bg-green-400::-moz-progress-bar { background-color: #4ade80; }
progress.bg-green-600::-moz-progress-bar { background-color: #16a34a; }

/* Dark mode styles */
.dark body {
    background-color: #111827; /* gray-900 */
    color: #f3f4f6; /* gray-100 */
}