/* /Layout/BackendLayout.razor.rz.scp.css */
/* Sidebar Styling */
.sidebar[b-nhthzquymm] {
    background-color: #f8f9fa;
    height: 100vh;
    padding: 1rem;
    position: sticky;
    top: 0;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #333 #f1f1f1; /* thumb color, track color */
}
    /* Custom scrollbar for WebKit browsers (Chrome, Safari, Edge) */
    .sidebar[b-nhthzquymm]::-webkit-scrollbar {
        width: 4px;
    }

    .sidebar[b-nhthzquymm]::-webkit-scrollbar-track {
        background-color: #f1f1f1;
        border-radius: 4px;
    }

    .sidebar[b-nhthzquymm]::-webkit-scrollbar-thumb {
        background-color: #333;
        border-radius: 4px;
        border: 2px solid #f1f1f1; /* Adds padding to scrollbar */
    }

        .sidebar[b-nhthzquymm]::-webkit-scrollbar-thumb:hover {
            background-color: #555; /* Changes color on hover */
        }

.profile img[b-nhthzquymm] {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.menu[b-nhthzquymm] {
    padding-left: 0;
}

.menu-item[b-nhthzquymm] {
    margin-bottom: 1rem;
}

    .menu-item a[b-nhthzquymm] {
        color: #495057;
        text-decoration: none;
    }

    .menu-item i[b-nhthzquymm] {
        color: #6c757d;
    }

.has-submenu .submenu[b-nhthzquymm] {
    padding-left: 1rem;
    display: none;
}
    .has-submenu .submenu .submenuunder[b-nhthzquymm] {
        padding: 4px;
    }

.menu-item:hover a[b-nhthzquymm],
.menu-item:hover i[b-nhthzquymm] {
    color: #007bff;
}

.submenu-icon[b-nhthzquymm] {
    transition: transform 0.3s;
    float:right;
}

.menu-item.has-submenu .submenu[b-nhthzquymm] {
    display: none;
    margin-top: 10px;
}

.menu-item.has-submenu.open .submenu[b-nhthzquymm] {
    display: block;
}

.menu-item a[b-nhthzquymm] {
    color: #333;
    text-decoration: none;
}

    .menu-item a.active[b-nhthzquymm] {
        font-weight: bold;
        color: #007bff;
    }

.submenu a[b-nhthzquymm] {
    display: block;
    color: #6c757d;
    text-decoration: none;
    padding: 5px 15px;
    transition: color 0.3s;
}

    .submenu a:hover[b-nhthzquymm] {
        color: #007bff;
    }
/* Mobile Sidebar */
.mobile-sidebar[b-nhthzquymm] {
    background-color: #f8f9fa;
    padding: 1rem;
}
/* /Layout/BackendNav.razor.rz.scp.css */
/* Base styles */
.top-nav[b-z4bqnmbqnh] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: gray;
    color: #FFFFFF;
}

.nav-left[b-z4bqnmbqnh], .nav-center[b-z4bqnmbqnh], .nav-right[b-z4bqnmbqnh] {
    display: flex;
    align-items: center;
}

.logo img[b-z4bqnmbqnh] {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

.logo span[b-z4bqnmbqnh] {
    font-size: 1.5em;
    font-weight: bold;
    color: #FFFFFF;
}

.visit-website-btn[b-z4bqnmbqnh] {
    text-decoration: none;
    color: #FFFFFF;
    padding: 8px 16px;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    transition: background-color 0.3s;
}

    .visit-website-btn:hover[b-z4bqnmbqnh] {
        background-color: #FFFFFF;
        color: #2A3F54;
    }

.icon-container i[b-z4bqnmbqnh], .dropdown-icon[b-z4bqnmbqnh] {
    font-size: 1.5em;
    color: #FFFFFF;
    cursor: pointer;
    margin-left: 15px;
}

.profile-info[b-z4bqnmbqnh] {
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .profile-info img[b-z4bqnmbqnh] {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        margin-right: 10px;
    }

.profile-name[b-z4bqnmbqnh] {
    font-weight: bold;
    margin-right: 5px;
}

.profile-role[b-z4bqnmbqnh] {
    font-size: 0.85em;
    color: #C0C0C0;
}

/* Dropdown Menu */
.dropdown-menu[b-z4bqnmbqnh] {
    position: absolute;
    top: 50px;
    right: 0;
    background-color: #FFFFFF;
    color: #333;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 1000;
    display: none; /* Hide by default */
}

    .dropdown-menu.show[b-z4bqnmbqnh] {
        display: block; /* Show when active */
    }

    .dropdown-menu a[b-z4bqnmbqnh] {
        display: block;
        padding: 10px 20px;
        text-decoration: none;
        color: #333;
    }

        .dropdown-menu a:hover[b-z4bqnmbqnh] {
            background-color: #f1f1f1;
        }


/* Mobile menu */
.mobile-only[b-z4bqnmbqnh] {
    display: none;
}

.mobile-menu[b-z4bqnmbqnh] {
    display: none;
    background-color: #2A3F54;
    color: #FFFFFF;
    padding: 15px;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

    .mobile-menu a[b-z4bqnmbqnh], .mobile-menu .icon-container i[b-z4bqnmbqnh] {
        display: block;
        padding: 10px 0;
        text-decoration: none;
        color: #FFFFFF;
        text-align: center;
    }

    .mobile-menu .icon-container[b-z4bqnmbqnh] {
        display: flex;
        justify-content: space-around;
    }

/* Responsive design */
@media (max-width: 768px) {
    .desktop-only[b-z4bqnmbqnh] {
        display: none;
    }

    .mobile-only[b-z4bqnmbqnh] {
        display: block;
    }
}
/* /Layout/CategoryMegaMenu.razor.rz.scp.css */
/* Categories Button */
.categories-btn[b-r8xq669hvm] {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
    margin: 12px auto;
}

    .categories-btn:hover[b-r8xq669hvm] {
        background-color: #e9ecef;
    }

/* Main Categories Menu */
.category-menu[b-r8xq669hvm] {
    position: absolute;
    left: 0;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 5px;
    z-index: 1000;
    width: 318px;
}

.category-item[b-r8xq669hvm] {
    padding: 10px 15px;
    color: #333;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
}

    .category-item:hover[b-r8xq669hvm] {
        background-color: #f8f9fa;
        color: #007bff;
    }

    .category-item i[b-r8xq669hvm] {
        font-size: 1.2rem;
        color: #007bff;
        margin-right: 10px;
    }

/* Submenu */
.submenu[b-r8xq669hvm] {
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 15px;
    min-width: 200px;
    display: none;
}

.category-item:hover .submenu[b-r8xq669hvm] {
    display: block;
}

.submenu-item[b-r8xq669hvm] {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    color: #333;
    font-size: 0.95rem;
    transition: color 0.3s;
}

    .submenu-item:hover[b-r8xq669hvm] {
        color: #28a745;
    }

    .submenu-item i[b-r8xq669hvm] {
        font-size: 1.1rem;
        color: #28a745;
        margin-right: 8px;
    }
/* Mobile Styles */
@media (max-width: 768px) {
    .categories-btn[b-r8xq669hvm] {
        display:none;
    }
}
/* /Layout/CategoryMenu.razor.rz.scp.css */
/* Categories Button */
.categories-btn[b-3iap19dhuf] {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
    margin: 12px auto;
}

    .categories-btn:hover[b-3iap19dhuf] {
        background-color: #e9ecef;
    }

/* Main Categories Menu */
.category-menu[b-3iap19dhuf] {
    position: absolute;
    left: 0;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 5px;
    z-index: 1000;
    width: 318px;
}

.category-item[b-3iap19dhuf] {
    padding: 10px 15px;
    color: #333;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
}

    .category-item:hover[b-3iap19dhuf] {
        background-color: #f8f9fa;
        color: #007bff;
    }

    .category-item i[b-3iap19dhuf] {
        font-size: 1.2rem;
        color: #007bff;
        margin-right: 10px;
    }

/* Submenu */
.submenu[b-3iap19dhuf] {
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 15px;
    min-width: 200px;
    display: none;
}

.category-item:hover .submenu[b-3iap19dhuf] {
    display: block;
}

.submenu-item[b-3iap19dhuf] {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    color: #333;
    font-size: 0.95rem;
    transition: color 0.3s;
}

    .submenu-item:hover[b-3iap19dhuf] {
        color: #28a745;
    }

    .submenu-item i[b-3iap19dhuf] {
        font-size: 1.1rem;
        color: #28a745;
        margin-right: 8px;
    }
/* Mobile Styles */
@media (max-width: 768px) {
    .categories-btn[b-3iap19dhuf] {
        display:none;
    }
}
/* /Layout/HeaderLayout.razor.rz.scp.css */
@media (max-width: 768px) {
    .header-three[b-aw2jmzg2oq] {
        padding: 10px 15px;
    }

    .navbar-brand img[b-aw2jmzg2oq] {
        width: 120px;
    }

    .header-navbar-rht li[b-aw2jmzg2oq] {
        margin-left: 10px;
    }

    .header-top .icon-btn[b-aw2jmzg2oq] {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .header-top .icon-btn[b-aw2jmzg2oq] {
        display: none; /* Hide contact details on extra-small screens */
    }

    .header-three .header-nav-three[b-aw2jmzg2oq] {
        padding: 5px 10px;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-vt20b7d84t] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-vt20b7d84t] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-vt20b7d84t] {
    font-size: 1.1rem;
}

.bi[b-vt20b7d84t] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-vt20b7d84t] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-vt20b7d84t] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-vt20b7d84t] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-vt20b7d84t] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-vt20b7d84t] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-vt20b7d84t] {
        padding-bottom: 1rem;
    }

    .nav-item[b-vt20b7d84t]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-vt20b7d84t]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-vt20b7d84t]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-vt20b7d84t] {
        display: none;
    }

    .collapse[b-vt20b7d84t] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-vt20b7d84t] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/BackendPortal/BackendDashboard.razor.rz.scp.css */
/* /Pages/BackendPortal/NavigationMenu.razor.rz.scp.css */
/* Base Sidebar Styling */
.sidebar[b-85fne1hls4] {
    width: 250px;
    background-color: #fff;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    transition: transform 0.3s ease;
    z-index: 1000;
    transform: translateX(-100%);
}

    .sidebar.show[b-85fne1hls4] {
        transform: translateX(0);
    }

/* Profile Section Styling */
.profile-section[b-85fne1hls4] {
    padding: 20px;
    text-align: center;
}

.profile-img img[b-85fne1hls4] {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.profile-name h4[b-85fne1hls4] {
    margin: 10px 0 5px;
    font-size: 18px;
    color: #333;
}

.add-course[b-85fne1hls4] {
    display: inline-block;
    padding: 8px 12px;
    font-size: 14px;
    color: #fff;
    background-color: #007bff;
    border-radius: 4px;
    text-decoration: none;
}

/* Menu Styling */
.settings-menu[b-85fne1hls4] {
    padding: 20px 0;
}

    .settings-menu h3[b-85fne1hls4] {
        font-size: 14px;
        padding-left: 20px;
        color: #888;
        text-transform: uppercase;
        margin-top: 20px;
    }

    .settings-menu ul[b-85fne1hls4] {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .settings-menu ul li[b-85fne1hls4] {
            padding: 10px 20px;
        }

            .settings-menu ul li a[b-85fne1hls4] {
                display: flex;
                align-items: center;
                color: #333;
                text-decoration: none;
                font-size: 16px;
            }

                .settings-menu ul li a i[b-85fne1hls4] {
                    margin-right: 15px;
                    font-size: 20px;
                    color: #666;
                }

                /* Active and Hover State */
                .settings-menu ul li.active a[b-85fne1hls4],
                .settings-menu ul li a:hover[b-85fne1hls4] {
                    color: #007bff;
                }

/* Hide sidebar by default on mobile */
@media (max-width: 992px) {
    .sidebar[b-85fne1hls4] {
        display: none;
    }

    .toggle-sidebar-btn[b-85fne1hls4] {
        display: inline-block;
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 1000;
        background-color: #007bff;
        color: #fff;
        border: none;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
    }
}

/* Show sidebar by default on larger screens */
@media (min-width: 992px) {
    .toggle-sidebar-btn[b-85fne1hls4] {
        display: none;
    }

    .sidebar[b-85fne1hls4] {
        display: block !important;
    }
}
/* /Pages/BackendPortal/QuestionAnswerPage/QuestionAnswerList.razor.rz.scp.css */
.chat-container[b-1voo7g6syw] {
    height: 100vh;
    display: flex;
}

.student-list[b-1voo7g6syw] {
    background: #f8f9fa;
    border-right: 1px solid #ddd;
    padding: 10px;
}

.search-bar[b-1voo7g6syw] {
    margin-bottom: 10px;
}

.list-group-item[b-1voo7g6syw] {
    cursor: pointer;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 10px;
}

    .list-group-item:hover[b-1voo7g6syw] {
        background-color: #e9ecef;
    }

.student-image[b-1voo7g6syw] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.student-info[b-1voo7g6syw] {
    flex-grow: 1;
}

.student-name[b-1voo7g6syw] {
    font-weight: bold;
}

.timestamp[b-1voo7g6syw] {
    font-size: 12px;
    color: #888;
}

.chat-panel[b-1voo7g6syw] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.chat-header[b-1voo7g6syw] {
    padding: 10px;
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.chat-header-image[b-1voo7g6syw] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.chat-body[b-1voo7g6syw] {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px;
}

.chat-message[b-1voo7g6syw] {
    margin-bottom: 10px;
    max-width: 70%;
}

    .chat-message.sent[b-1voo7g6syw] {
        margin-left: auto;
        background-color: #e1f7d5;
        padding: 10px;
        border-radius: 10px;
        text-align: right;
    }

    .chat-message.received[b-1voo7g6syw] {
        background-color: #f1f1f1;
        padding: 10px;
        border-radius: 10px;
        text-align: left;
    }

.chat-input[b-1voo7g6syw] {
    padding: 10px;
    border-top: 1px solid #ddd;
    background: #fff;
}

.send-button[b-1voo7g6syw] {
    margin-left: 10px;
}
/* /Pages/CourseDetailsPage.razor.rz.scp.css */
.nav-tabs .nav-link.active[b-4dyotdmtdb] {
    font-weight: bold;
    color: #000000; 
    border-bottom: 2px solid #563d7c;
}
/* /Pages/InstructorViewList.razor.rz.scp.css */
.profile-card[b-3ijzg9k8ch] {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    max-width: 400px;
    margin: auto;
}

    .profile-card img[b-3ijzg9k8ch] {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        border: 5px solid #f3f3f3;
    }

    .profile-card h5[b-3ijzg9k8ch] {
        font-size: 24px;
        font-weight: bold;
        margin: 10px 0;
    }

    .profile-card .stars[b-3ijzg9k8ch] {
        color: #f4c150;
    }

    .profile-card .rating[b-3ijzg9k8ch] {
        font-size: 14px;
        color: #4CAF50;
        font-weight: bold;
    }

    .profile-card .follow-btn[b-3ijzg9k8ch] {
        background: #28a745;
        color: #fff;
        border-radius: 20px;
        padding: 5px 15px;
        font-size: 16px;
        margin-top: 10px;
    }

    .profile-card .icon-list[b-3ijzg9k8ch] {
        margin-top: 15px;
    }

        .profile-card .icon-list i[b-3ijzg9k8ch] {
            font-size: 24px;
            margin: 0 8px;
            color: #555;
        }

    .profile-card .stats[b-3ijzg9k8ch] {
        display: flex;
        justify-content: space-around;
        margin-top: 20px;
    }

        .profile-card .stats div[b-3ijzg9k8ch] {
            text-align: center;
        }

            .profile-card .stats div span[b-3ijzg9k8ch] {
                font-size: 20px;
                font-weight: bold;
                display: block;
            }

            .profile-card .stats div p[b-3ijzg9k8ch] {
                font-size: 14px;
                color: #777;
                margin: 0;
            }
/* /Pages/StudentPoral/LearningPortal/LearningDashboard.razor.rz.scp.css */
.watermark-container[b-7de6dkjdpi] {
    position: absolute;
    z-index: 20;
    pointer-events: none;
    animation: moveWatermark 100s linear infinite;
}

.d-none[b-7de6dkjdpi] {
    display: none;
}
/* /Pages/StudentPoral/Quiz.razor.rz.scp.css */
.option-box[b-p500jnjccm]
{
    transition: all ease 0.2s;
}
.option-box:hover[b-p500jnjccm]
{
    border-radius:10px;
    box-shadow:0 0 18px 1px #bebebe;
}
