/* ==========================================================================
   TEACHERS & STAFF DIRECTORY STYLES (teachers.css)
   ========================================================================== */

.m_sms_t_main_wrapper {
    font-family: 'Noto Sans Bengali', sans-serif;
    width: 95%;
    margin: 0 auto;
}

/* Custom Font Helpers */
.fs-7 {
    font-size: 13.5px !important;
}

.fs-8 {
    font-size: 12px !important;
}

/* --- Search & Filter Card --- */
.m_sms_t_filter_card {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0 !important;
}

.m_sms_t_filter_btns .btn {
    border-radius: 4px;
    font-weight: 500;
}

/* --- Teacher & Staff Main Card --- */
.m_sms_t_card {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0 !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.m_sms_t_card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

/* Profile Photo Container */
.m_sms_t_img_wrap {
    width: 100%;
    max-width: 95px;
    height: 110px;
    overflow: hidden;
    border-radius: 6px;
}

.m_sms_t_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Info List Styling */

.m_sms_t_info_list li {
    color: #475569;
    line-height: 1.5;
    font-weight: bold;
    font-size: 13px;
}

/* --- ALL DEVICE ALIGNMENT & PADDING FIX --- */
#m_sms_t_teachers_list,
#m_sms_t_staff_list {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* সব ডিভাইসে কার্ডগুলোর দুই পাশে নির্দিষ্ট গ্যাপ নিশ্চিত করা */
#m_sms_t_teachers_list > [class*='col-'],
#m_sms_t_staff_list > [class*='col-'] {
    padding-left: 6px !important;
    padding-right: 6px !important;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Desktop, Tablet, Mobile)
   ========================================================================== */

/* Laptop & Large Desktop (992px and above) */
@media (min-width: 992px) {
    .m_sms_t_img_wrap {
        max-width: 105px;
        height: 120px;
    }
    #m_sms_t_teachers_list > [class*='col-'],
    #m_sms_t_staff_list > [class*='col-'] {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}

/* Tablet Screens (768px to 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .m_sms_t_img_wrap {
        max-width: 90px;
        height: 105px;
    }
}

/* Mobile Devices (Max 767.98px) */
@media (max-width: 767.98px) {
    /* মোবাইল স্ক্রিনে ডানে-বামে সুন্দর প্যাডিং রাখা */
    #m_sms_t_teachers_list > [class*='col-'],
    #m_sms_t_staff_list > [class*='col-'] {
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .m_sms_t_img_wrap {
        max-width: 80px;
        height: 95px;
    }

    .m_sms_t_name {
        font-size: 13.5px !important;
    }

    .m_sms_t_info_list {
        font-size: 11px !important;
    }
}