/* * মূল স্টাইলিং এখন Tailwind CSS দিয়ে করা হচ্ছে। 
 * এখানে শুধুমাত্র ফন্ট ইমপোর্ট এবং কিছু বেসিক রিসেট রাখা হলো 
 */

/* Force font family if Tailwind config doesn't catch it in WP context */
.cm-dashboard-wrapper * {
    font-family: 'Hind Siliguri', sans-serif;
}

/* Fix for some themes adding margin to ul/li inside dashboard */
.cm-dashboard-wrapper ul, 
.cm-dashboard-wrapper li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Ensure links don't have default theme underlines unless specified */
.cm-dashboard-wrapper a {
    text-decoration: none;
    box-shadow: none;
}