/* Custom styles for Muskan Medicare */
/* This file is created to prevent 404 errors. All styles are inline in HTML files. */

/* Additional global styles can be added here if needed */
body {
    font-family: 'Poppins', sans-serif;
}

/* Custom utility classes */
.text-primary-custom {
    color: #2E8B57 !important;
}

.bg-primary-custom {
    background-color: #2E8B57 !important;
}

/* Smooth transitions for better UX */
* {
    transition: all 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2E8B57;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #236b47;
}
