*
{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4895ef;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --sidebar-width: 250px;
    --sidebar-collapsed-width: 70px;
    --header-height: 70px;
    --sidebar-bg: #101c44;
    --sidebar-hover: #344067;
    --sidebar-active: #845adf;
    --text-light: #94a3b8;
    --text-white: #f1f5f9;
}

body {
    font-family: "Inter",sans-serif;
    background-color: #f5f7fb;
    overflow-x: hidden;
    transition: all 0.3s ease-in-out;
    font-weight: 400;
    color: #334155;
}

/* --- Sidebar Styles --- */
#sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--sidebar-bg);
    color: var(--text-white);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transition: width 0.1s ease;
}

body.sidebar-collapsed #sidebar {
    width: var(--sidebar-collapsed-width);
}

.sidebar-header {
    padding: 20px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    transition: opacity 0.3s;
    color: var(--text-white);
}

body.sidebar-collapsed .sidebar-header h3 {
    opacity: 0;
}

.only-logo
{
    display: none;
}

body.sidebar-collapsed .sidebar-header .only-logo
{
    display: block;
    margin-left: -6px;
}

/* Close button for mobile sidebar */
.sidebar-close {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.2s;
}

.sidebar-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.sidebar-menu {
    padding: 20px 0;
}

.sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    position: relative;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 11px 20px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 8px;
    margin: 0 15px 5px 15px;
    font-weight: 500;
}

.sidebar-menu a:hover {
    background-color: var(--sidebar-hover);
    color: var(--text-white);
}

.sidebar-menu a.active {
    background-color: var(--sidebar-active);
    color: white;
    box-shadow: 0 4px 6px rgba(26, 42, 92, 0.7);
}

.sidebar-menu i {
    margin-right: 10px;
    font-size: 12px;
    width: 20px;
    text-align: center;
}

.sidebar-menu .menu-text {
    font-size: 12px;
    transition: opacity 0.3s;
}

body.sidebar-collapsed .sidebar-menu .menu-text, 
body.sidebar-collapsed .sidebar-header h3 {
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    pointer-events: none;
}

body.sidebar-collapsed .sidebar-menu a {
    justify-content: center;
    margin: 0 10px 5px 10px;
}

body.sidebar-collapsed .sidebar-menu i {
    margin-right: 0;
}

.menu-section {
    padding: 15px 20px 5px 20px;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.5px;
}

body.sidebar-collapsed .menu-section {
    opacity: 0;
}

/* Dropdown Menu Styles */
.has-dropdown > a {
    position: relative;
}

.has-dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    transition: transform 0.3s;
}

.has-dropdown.active > a::after {
    transform: rotate(180deg);
}

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    margin: 0 15px;
}

.has-dropdown.active .submenu {
    max-height: 300px;
}

.submenu a {
    padding-left: 50px;
    margin: 0;
    border-radius: 0;
    font-size: 0.9rem;
    padding-top: 10px;
    padding-bottom: 10px;
}

.submenu i
{
    font-size: 10px;
}

.submenu a:first-child {
    padding-top: 15px;
}

.submenu a:last-child {
    padding-bottom: 15px;
    border-radius: 0 0 8px 8px;
}

/* Collapsed sidebar dropdown adjustments */
body.sidebar-collapsed .has-dropdown > a::after {
    display: none;
}

body.sidebar-collapsed .submenu {
    position: absolute;
    left: 100%;
    top: 0;
    width: 200px;
    background-color: var(--sidebar-bg);
    border-radius: 8px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    max-height: 0;
    overflow: hidden;
}

body.sidebar-collapsed .has-dropdown:hover .submenu {
    max-height: 300px;
}

body.sidebar-collapsed .submenu a {
    padding-left: 20px;
}

/* --- Header Styles --- */
#header {
    height: var(--header-height);
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    right: 0;
    left: var(--sidebar-width);
    z-index: 999;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
}

body.sidebar-collapsed #header {
    left: var(--sidebar-collapsed-width);
}

.header-left {
    display: flex;
    align-items: center;
}

.toggle-sidebar {
    background: none;
    border: none;
    color: var(--dark-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s;
    margin-right: 15px;
}

.toggle-sidebar:hover {
    background-color: var(--light-color);
}

.header-right {
    display: flex;
    align-items: center;
}

.notification, .user-profile {
    margin-left: 15px;
    position: relative;
    cursor: pointer;
}

.notification i, .user-profile i {
    font-size: 1.3rem;
    color: #64748b;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.2s;
}

.notification i:hover, .user-profile i:hover {
     background-color: var(--light-color);
     color: var(--primary-color);
}

.notification-badge {
    position: absolute;
    top: 1px;
    right: 1px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Header Dropdown Styles - Enhanced for Mobile */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    margin-top: 10px;
    min-width: 280px;
    max-height: 80vh;
    overflow-y: auto;
}

/* Mobile-specific dropdown styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: fixed !important;
        top: 70px !important;
        left: 15px !important;
        right: 15px !important;
        width: auto !important;
        max-width: calc(100vw - 30px);
        transform: none !important;
        margin-top: 5px;
        max-height: 70vh;
        z-index: 1005;
    }
    
    .dropdown-menu.dropdown-menu-end {
        left: 15px !important;
        right: 15px !important;
    }
}

/* Tablet-specific dropdown styles */
@media (min-width: 769px) and (max-width: 991.98px) {
    .dropdown-menu {
        position: fixed !important;
        top: 70px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 400px !important;
        max-width: 90vw;
        margin-top: 5px;
        z-index: 1005;
    }
}

.manage-account-header-dropdown
{
    font-size: 14px;
}

.manage-account-header-dropdown i
{
    font-size: 14px;
}

.dropdown-header {
    padding: 10px 20px;
    font-weight: 600;
    color: var(--dark-color);
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    text-align: center;
}

.dropdown-item {
    padding: 8px 20px;
    /*display: flex;*/
    align-items: center;
    transition: all 0.2s;
    font-weight: 500;
}

.dropdown-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: #64748b;
}

.dropdown-item:hover {
    background-color: #f8fafc;
    color: var(--primary-color);
}

.dropdown-item:hover i {
    color: var(--primary-color);
}

.dropdown-divider {
    margin: 8px 0;
    border-top: 1px solid #f1f5f9;
}

.notification-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 20px;
    border-bottom: 1px solid #f8fafc;
    transition: all 0.2s;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover {
    background-color: #f8fafc;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.notification-icon.order {
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
}

.notification-icon.user {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.notification-icon.payment {
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--dark-color);
}

.notification-time {
    font-size: 0.8rem;
    color: #94a3b8;
}

.user-profile-dropdown .user-info {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: 12px;
}

.user-details h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.user-details p {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
}

/* --- Content Styles --- */
#content {
    margin-left: var(--sidebar-width);
    margin-top: var(--header-height);
    padding: 25px;
    transition: all 0.3s ease-in-out;
    min-height: calc(100vh - var(--header-height));
}

body.sidebar-collapsed #content {
    margin-left: var(--sidebar-collapsed-width);
}

.page-title {
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-title h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

/*.card:hover {*/
/*    transform: translateY(-3px);*/
/*    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);*/
/*}*/

.card-header {
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    font-weight: 600;
    padding: 18px 25px;
    border-radius: 12px 12px 0 0 !important;
    font-size: 1.1rem;
    color: #1e293b;
}

/* Stat Card styles */
/*.stat-card {*/
/*    text-align: center;*/
/*    padding: 25px 20px;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.stat-card i {*/
/*    font-size: 2.2rem;*/
/*    margin-bottom: 15px;*/
/*    color: var(--primary-color);*/
/*    transition: color 0.3s;*/
/*}*/

/*.stat-card h3 {*/
/*    font-size: 2.0rem;*/
/*    margin-bottom: 5px;*/
/*    font-weight: 700;*/
/*    color: var(--dark-color);*/
/*}*/

/*.stat-card p {*/
/*    color: #6c757d;*/
/*    margin: 0;*/
/*    font-size: 0.95rem;*/
/*    font-weight: 500;*/
/*}*/

.chart-container {
    height: 350px;
    position: relative;
}

.list-group-item {
    border: none;
    padding: 12px 20px;
    font-weight: 500;
}

.badge {
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
}

.table {
    font-weight: 500;
}

.table th {
    font-weight: 600;
    color: #475569;
    border-top: none;
    padding: 15px 20px;
}

.table td {
    padding: 15px 20px;
    vertical-align: middle;
}

/* --- Responsive Styles --- */
@media (max-width: 991.98px) {
    #sidebar {
        width: var(--sidebar-width);
        position: fixed;
        left: calc(-1 * var(--sidebar-width));
        transition: left 0.3s ease-in-out;
        z-index: 9999;
    }

    #header, #content {
        left: 0;
        margin-left: 0;
    }
    
    #content {
        margin-top: var(--header-height);
        padding: 20px;
    }

    body.sidebar-open #sidebar {
        left: 0;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }
    
    /* Shadow overlay for mobile sidebar */
    body.sidebar-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1001;
        backdrop-filter: blur(2px);
    }
    
    /* Prevent body scrolling when sidebar is open */
    body.sidebar-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    .sidebar-menu .menu-text, .sidebar-header h3, .menu-section {
        opacity: 1 !important;
    }
    
    /* Show close button on mobile */
    .sidebar-close {
        display: block;
    }
    
    .row > div[class*="col-"] {
        margin-bottom: 15px;
    }
    
    .chart-container {
        height: 280px;
    }
    
    /* Mobile dropdown adjustments */
    body.sidebar-open .has-dropdown > a::after {
        display: block;
    }
    
    body.sidebar-open .submenu {
        position: static;
        width: auto;
        box-shadow: none;
    }

    /* Header adjustments for mobile */
    #header {
        padding: 0 15px;
        z-index: 1003;
    }
    
    .header-right {
        margin-left: auto;
    }
}

@media (max-width: 575.98px) {
    .page-title {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .page-title h2 {
        margin-bottom: 10px;
        font-size: 1.5rem;
    }
    
    .col-md-3 {
        width: 100%;
    }
    
    #content {
        padding: 15px;
    }
    
    .table-responsive {
        border: 1px solid #dee2e6;
        border-radius: 8px;
    }

    .header-right {
        margin-left: auto;
    }
    
    .notification, .user-profile {
        margin-left: 10px;
    }
    
    .notification i, .user-profile i {
        padding: 8px;
        font-size: 1.2rem;
    }
}


.stat-card {
    background: white;
    border-radius: 10px;
    padding: 18px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #4361ee;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.stat-change {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 6px;
    gap: 4px;
}

.stat-change.negative {
    color: #ef4444;
}

.stat-change.positive {
    color: #10b981;
}

.stat-change i {
    font-size: 0.7rem;
}

.stat-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 0;
}

.stat-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0.8;
}

.icon-employers {
    background-color: rgba(67, 97, 238, 0.1);
    color: #4361ee;
}

.icon-candidates {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.icon-recruiters {
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.icon-resume {
    background-color: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.icon-jobs {
    background-color: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}

.icon-applications {
    background-color: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.icon-interviews {
    background-color: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.icon-conversion {
    background-color: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
}

/* Compact layout adjustments */
.row {
    margin: -8px;
}

.row > [class*='col-'] {
    padding: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stat-card {
        padding: 16px 14px;
    }
    
    .stat-value {
        font-size: 1.6rem;
    }
    
    .stat-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .stat-card {
        padding: 14px 12px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

.n-category-slider-2
{
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 15px;
    overflow: scroll;
}

.n-category-slider-2::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.n-text-align-center
{
    text-align: center;
    justify-content: center;
}

/*.table-thead tr*/
/*{*/
/*    background-color: #000000 !important;*/
/*}*/

.table-thead tr th
{
    font-size: 13px;
}

.table-tbody tr td
{
    font-size: 12px;
}


/* BTN CSS Start */

.n-btn-1
{
    background-color: rgba(0, 0, 0, 0.08);
    width: 100%;
    color: #000000;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 12px;
    text-align: center;
    width: fit-content;
    font-weight: 500;
    transition: 0.3s ease-in-out;
    border-radius: 5px;
}

.n-btn-1:hover
{
    /*color: #fefefe;*/
    background-color: rgba(0, 0, 0, 0.20); 
}

.n-btn-1:first-child
{
    margin-left: -5px;
}

/* BTN CSS End */

/* Form Start */

.label-1
{
    font-size: 12px;
}

.input-1
{
    font-size: 12px;
}

/* Form End */


.n-centerlised-content-1 {
    display: flex;
    align-items: flex-end;       /* vertical bottom */
    justify-content: flex-start; /* horizontal left */
}

/*Start Module 1*/
.md1-account-container {
    max-width: 1200px;
    margin: 0 auto;
}

.md1-page-header {
    margin-bottom: 30px;
}

.md1-page-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.md1-page-subtitle {
    color: #64748b;
    font-size: 16px;
}

.md1-account-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}



.md1-card-header {
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 600;
    padding: 20px 25px;
    border-radius: 12px 12px 0 0 !important;
    font-size: 16px;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.md1-card-header i {
    color: #4361ee;
    margin-right: 10px;
}

.md1-card-body {
    padding: 25px;
}

.md1-profile-section {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
}

.md1-avatar-container {
    text-align: center;
    flex-shrink: 0;
}

.md1-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.md1-avatar-change {
    background: none;
    border: 1px solid #4361ee;
    color: #4361ee;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.3s;
    cursor: pointer;
}

.md1-avatar-change:hover {
    background-color: #4361ee;
    color: white;
}

.md1-profile-details {
    flex: 1;
}

.md1-profile-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.md1-profile-role {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 15px;
}

.md1-profile-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.md1-stat-item {
    text-align: center;
}

.md1-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #4361ee;
}

.md1-stat-label {
    font-size: 0.85rem;
    color: #64748b;
}

.md1-form-group {
    margin-bottom: 20px;
}

.md1-form-label {
    font-weight: 600;
    color: #374151;
    font-size: 13px;
    margin-bottom: 8px;
    display: block;
}

.md1-form-control {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 15px;
    width: 100%;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.md1-form-control:focus {
    border-color: #4361ee;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
    outline: none;
}

.md1-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.md1-security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.md1-security-badge {
    background-color: #f0f9ff;
    color: #0369a1;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.md1-security-badge i {
    font-size: 0.8rem;
}

.md1-session-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
}

.md1-session-item:last-child {
    border-bottom: none;
}

.md1-session-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.md1-session-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #f0f9ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0369a1;
}

.md1-session-details h6 {
    margin: 0;
    font-weight: 600;
    color: #1e293b;
    font-size: 15px;
}

.md1-session-details p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}

.md1-session-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.md1-status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.md1-status-active {
    background-color: #dcfce7;
    color: #166534;
}

.md1-status-inactive {
    background-color: #fef2f2;
    color: #991b1b;
}

.md1-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.md1-btn-primary {
    background-color: #4361ee;
    color: white;
}

.md1-btn-primary:hover {
    background-color: #3a0ca3;
}

.md1-btn-outline {
    background-color: transparent;
    border: 1px solid #d1d5db;
    color: #374151;
}

.md1-btn-outline:hover {
    background-color: #f8fafc;
    border-color: #94a3b8;
}

.md1-btn-danger {
    background-color: #ef4444;
    color: white;
}

.md1-btn-danger:hover {
    background-color: #dc2626;
}

.md1-action-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 25px;
}

.md1-notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.md1-notification-item:last-child {
    border-bottom: none;
}

.md1-notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.md1-notification-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.md1-notification-email {
    background-color: #3b82f6;
}

.md1-notification-sms {
    background-color: #10b981;
}

.md1-notification-push {
    background-color: #f59e0b;
}

.md1-notification-security {
    background-color: #ef4444;
}

.md1-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.md1-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.md1-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
    border-radius: 24px;
}

.md1-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .md1-slider {
    background-color: #4361ee;
}

input:checked + .md1-slider:before {
    transform: translateX(26px);
}

@media (max-width: 768px) {
    .md1-profile-section {
        flex-direction: column;
        text-align: center;
    }

    .md1-form-row {
        grid-template-columns: 1fr;
    }

    .md1-profile-stats {
        justify-content: center;
    }

    .md1-action-buttons {
        flex-direction: column;
    }

    .md1-session-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .md1-session-status {
        align-self: flex-end;
    }
}
/*End Module 1*/


/* Start Module 2 */
/* Notification Page Styles with m2- prefix */
.m2-notification-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
}

.m2-notification-sidebar {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.m2-notification-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e1e4e8;
}



.m2-notification-content {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.m2-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e4e8;
}

.m2-content-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
}

.m2-content-actions {
    display: flex;
    gap: 10px;
}

.m2-action-btn {
    background: #f8f9fa;
    border: 1px solid #e1e4e8;
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.m2-action-btn:hover {
    background: #e9ecef;
}

.m2-action-btn.primary {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.m2-action-btn.primary:hover {
    background: #2980b9;
}

.m2-notification-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.m2-notification-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    background: #f8f9fa;
    transition: all 0.2s ease;
}

.m2-notification-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.m2-notification-item.unread {
    background: #e3f2fd;
    border-left-color: #2196f3;
}

.m2-notification-item.important {
    background: #ffebee;
    border-left-color: #f44336;
}

.m2-notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.m2-notification-icon.info {
    background: #3498db;
}

.m2-notification-icon.warning {
    background: #f39c12;
}

.m2-notification-icon.success {
    background: #2ecc71;
}

.m2-notification-icon.error {
    background: #e74c3c;
}

.m2-notification-details {
    flex: 1;
}

.m2-notification-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.m2-notification-message {
    font-size: 0.85rem;
    color: #5a6c7d;
    margin-bottom: 8px;
    line-height: 1.4;
}

.m2-notification-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.m2-notification-time {
    font-size: 0.75rem;
    color: #7f8c8d;
}

.m2-notification-badge {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
}

.m2-badge-primary {
    background: #e3f2fd;
    color: #1976d2;
}

.m2-badge-warning {
    background: #fff3e0;
    color: #f57c00;
}

.m2-badge-success {
    background: #e8f5e9;
    color: #388e3c;
}

.m2-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #7f8c8d;
}

.m2-empty-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.m2-empty-text {
    font-size: 1rem;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .m2-notification-container {
        grid-template-columns: 1fr;
    }
    
    .m2-notification-sidebar {
        order: 2;
    }
    
    .m2-notification-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .m2-content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .m2-content-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .m2-action-btn {
        flex: 1;
        justify-content: center;
    }
}
/* End Module 2*/
