/* _content/RazorUI/Pages/Admin/EditCourse.cshtml.rz.scp.css */
.no-course-message[b-uxlr1e4il5] {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.no-course-icon[b-uxlr1e4il5] {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.module-title[b-uxlr1e4il5] {
    font-weight: bold;
}


body[b-uxlr1e4il5] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-wrapper[b-uxlr1e4il5] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .content-wrapper[b-uxlr1e4il5] {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
}

@media (min-width: 1400px) {
    .content-wrapper[b-uxlr1e4il5] {
        padding: 0 30px;
    }
}
/* _content/RazorUI/Pages/Admin/EditPage.cshtml.rz.scp.css */
/* Page layout */
.editor-page-wrapper[b-ywcclha16g] {
    height: calc(100vh - 70px - 60px); /* Full viewport minus navbar and footer */
    display: flex;
    flex-direction: column;
}

.editor-page-wrapper .container-fluid[b-ywcclha16g] {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.editor-page-wrapper form[b-ywcclha16g] {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.editor-header h5[b-ywcclha16g] {
    color: #495057;
    font-weight: 500;
}

.editor-header hr[b-ywcclha16g] {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

/* Header fields responsive layout */
.header-fields-container[b-ywcclha16g] {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

/* Editor container styling */
.editor-container[b-ywcclha16g] {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0; /* Allow flex child to shrink */
}

.editor-toolbar-container[b-ywcclha16g] {
    background-color: white;
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
    z-index: 1000;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.editor-toolbar-container.sticky-editor[b-ywcclha16g] {
    position: fixed;
    top: 70px; /* Account for navbar height */
    left: 0;
    right: 0;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: white;
}

.editor-toolbar-container.sticky-editor + .editor-content-wrapper[b-ywcclha16g] {
    margin-top: 60px; /* Account for sticky toolbar height */
}

.editor-content-wrapper[b-ywcclha16g] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    min-height: 0;
}

.editor-textarea[b-ywcclha16g] {
    flex: 1;
    resize: none;
    border: none;
    outline: none;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
    padding: 1rem;
    overflow-y: auto;
    min-height: 0;
}

.editor-textarea:focus[b-ywcclha16g] {
    box-shadow: none;
}

/* TinyMDE specific overrides */
.tinyMDE-editor[b-ywcclha16g] {
    height: 100% !important;
    min-height: unset !important;
    overflow-y: auto !important;
}

.tinyMDE-editor textarea[b-ywcclha16g] {
    height: 100% !important;
    resize: none !important;
    overflow-y: auto !important;
}

/* Save button loading state */
#saveButton:disabled[b-ywcclha16g] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .header-fields-container[b-ywcclha16g] {
        margin-bottom: 1.5rem;
    }
    
    .editor-page-wrapper .container-fluid[b-ywcclha16g] {
        padding: 0.5rem;
    }
    
    .editor-page-wrapper[b-ywcclha16g] {
        height: calc(100vh - 70px - 60px); /* Maintain footer space on mobile */
    }
}

/* Legacy styles */
#preview[b-ywcclha16g] {
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 1rem;
    height: 100%;
    overflow-y: auto;
}

#pageContent[b-ywcclha16g] {
    height: 70vh;
    resize: vertical;
}
/* _content/RazorUI/Pages/Admin/ManageImages.cshtml.rz.scp.css */
/* ManageImages page specific styles */
.image-card[b-xpdge7g66g] {
    transition: transform 0.2s ease-in-out;
}

.image-card:hover[b-xpdge7g66g] {
    transform: translateY(-2px);
}

.image-thumbnail[b-xpdge7g66g] {
    transition: opacity 0.2s ease-in-out;
}

.image-thumbnail:hover[b-xpdge7g66g] {
    opacity: 0.8;
}

.usage-badge[b-xpdge7g66g] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 10;
}

.sticky-view-toggle[b-xpdge7g66g] {
    position: sticky;
    top: 80px;
    z-index: 100;
}

/* Responsive adjustments for thumbnail view */
@media (max-width: 576px) {
    .col-sm-6[b-xpdge7g66g] {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .image-card .card-body h6[b-xpdge7g66g] {
        font-size: 0.9rem;
    }
    
    .image-card .card-body small[b-xpdge7g66g] {
        font-size: 0.75rem;
    }
}
/* _content/RazorUI/Pages/Admin/Users/Index.cshtml.rz.scp.css */
body[b-duweeq7k0l] {
    color: #566787;
    background: #f5f5f5;
    font-family: 'Varela Round', sans-serif;
    font-size: 13px;
}

.table-responsive[b-duweeq7k0l] {
    margin: 30px 0;
}

.table-wrapper[b-duweeq7k0l] {
    min-width: 1000px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 3px;
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

.table-title[b-duweeq7k0l] {
    padding-bottom: 15px;
    background: #299be4;
    color: #fff;
    padding: 16px 30px;
    margin: -20px -25px 10px;
    border-radius: 3px 3px 0 0;
}

    .table-title h2[b-duweeq7k0l] {
        margin: 5px 0 0;
        font-size: 24px;
    }

    .table-title .btn[b-duweeq7k0l] {
        color: #566787;
        float: right;
        font-size: 13px;
        background: #fff;
        border: none;
        min-width: 50px;
        border-radius: 2px;
        border: none;
        outline: none !important;
        margin-left: 10px;
    }

        .table-title .btn:hover[b-duweeq7k0l], .table-title .btn:focus[b-duweeq7k0l] {
            color: #566787;
            background: #f2f2f2;
        }

        .table-title .btn i[b-duweeq7k0l] {
            float: left;
            font-size: 21px;
            margin-right: 5px;
        }

        .table-title .btn span[b-duweeq7k0l] {
            float: left;
            margin-top: 2px;
        }

table.table tr th[b-duweeq7k0l], table.table tr td[b-duweeq7k0l] {
    border-color: #e9e9e9;
    padding: 12px 15px;
    vertical-align: middle;
}

    table.table tr th:first-child[b-duweeq7k0l] {
        width: 60px;
    }

    table.table tr th:last-child[b-duweeq7k0l] {
        width: 100px;
    }

table.table-striped tbody tr:nth-of-type(odd)[b-duweeq7k0l] {
    background-color: #fcfcfc;
}

table.table-striped.table-hover tbody tr:hover[b-duweeq7k0l] {
    background: #f5f5f5;
}

table.table th i[b-duweeq7k0l] {
    font-size: 13px;
    margin: 0 5px;
    cursor: pointer;
}

table.table td:last-child i[b-duweeq7k0l] {
    opacity: 0.9;
    font-size: 22px;
    margin: 0 5px;
}

table.table td a[b-duweeq7k0l] {
    font-weight: bold;
    color: #566787;
    display: inline-block;
    text-decoration: none;
}

    table.table td a:hover[b-duweeq7k0l] {
        color: #2196F3;
    }

    table.table td a.settings[b-duweeq7k0l] {
        color: #2196F3;
    }

    table.table td a.delete[b-duweeq7k0l] {
        color: #F44336;
    }

table.table td i[b-duweeq7k0l] {
    font-size: 19px;
}

table.table .avatar[b-duweeq7k0l] {
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 10px;
}

.status[b-duweeq7k0l] {
    font-size: 30px;
    margin: 2px 2px 0 0;
    display: inline-block;
    vertical-align: middle;
    line-height: 10px;
}

.text-success[b-duweeq7k0l] {
    color: #10c469;
}

.text-info[b-duweeq7k0l] {
    color: #62c9e8;
}

.text-warning[b-duweeq7k0l] {
    color: #FFC107;
}

.text-danger[b-duweeq7k0l] {
    color: #ff5b5b;
}

.pagination[b-duweeq7k0l] {
    float: right;
    margin: 0 0 5px;
}

    .pagination li a[b-duweeq7k0l] {
        border: none;
        font-size: 13px;
        min-width: 30px;
        min-height: 30px;
        color: #999;
        margin: 0 2px;
        line-height: 30px;
        border-radius: 2px !important;
        text-align: center;
        padding: 0 6px;
    }

        .pagination li a:hover[b-duweeq7k0l] {
            color: #666;
        }

    .pagination li.active a[b-duweeq7k0l], .pagination li.active a.page-link[b-duweeq7k0l] {
        background: #03A9F4;
    }

        .pagination li.active a:hover[b-duweeq7k0l] {
            background: #0397d6;
        }

    .pagination li.disabled i[b-duweeq7k0l] {
        color: #ccc;
    }

    .pagination li i[b-duweeq7k0l] {
        font-size: 16px;
        padding-top: 6px
    }

.hint-text[b-duweeq7k0l] {
    float: left;
    margin-top: 10px;
    font-size: 13px;
}
/* _content/RazorUI/Pages/Content/CourseContent.cshtml.rz.scp.css */
body[b-146wyls0wm] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-wrapper[b-146wyls0wm] {
    flex: 1;
    display: flex;
    flex-direction: row;
    height: calc(100vh - 60px);
    padding-top: 55px;
}

.main-content[b-146wyls0wm] {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    width: 100%;
}

@media (min-width: 992px) {
    .main-content[b-146wyls0wm] {
        max-width: calc(100% - 500px);
        margin: 0 auto;
    }
}

/* Optional: Wider spacing for ultra-wide screens */
@media (min-width: 1400px) {
    .main-content[b-146wyls0wm] {
        max-width: 1200px; /* you can tweak this if needed */
    }
}

.sidebar[b-146wyls0wm] {
    width: 300px;
    overflow-y: auto;
    padding: 20px;
}

.page-toc[b-146wyls0wm] {
    position: sticky;
    top: 20px;
}

.course-toc .module-title[b-146wyls0wm] {
    cursor: pointer;
}

.course-toc .module-pages[b-146wyls0wm] {
/*    display: none;*/
    padding-left: 30px;
}
/*
.course-toc .module.active .module-pages {
    display: block;
}
*/
.course-toc .nav-link.active[b-146wyls0wm] {
    font-weight: bold;
}

@media (max-width: 991.98px) {
    .content-wrapper[b-146wyls0wm] {
        flex-direction: column;
    }

    .sidebar[b-146wyls0wm] {
        width: 100%;
    }
}

.toc-container a[b-146wyls0wm] {
    text-decoration: none;
    display: block;
    padding: .125rem 0;
    color: var(--bs-gray-900);
    transition: all 50ms ease-in-out; /* 💡 This small transition makes setting of the active state smooth */
}

.toc-container li[b-146wyls0wm] {
    padding-bottom: 0.5rem;
    padding-top: 0.25rem;
    padding-left: 0.5rem;
    list-style-type: none;
}

.toc-container li.active[b-146wyls0wm] {
    font-weight: bolder;
    border-left: .125rem solid var(--bs-gray-900);
}

.toc-container li:hover[b-146wyls0wm] {
    background-color: var(--bs-gray-200);
}
/* _content/RazorUI/Pages/Content/Enrol.cshtml.rz.scp.css */
body[b-tf828ok2lg] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-wrapper[b-tf828ok2lg] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .content-wrapper[b-tf828ok2lg] {
        max-width: 960px;
        margin: 0 auto;
        padding: 0 15px;
    }
}

.enrollment-steps[b-tf828ok2lg] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.enrollment-step[b-tf828ok2lg] {
    flex: 1;
    text-align: center;
    position: relative;
}

    .enrollment-step[b-tf828ok2lg]::after {
        content: '';
        position: absolute;
        top: 25px;
        left: 50%;
        width: 100%;
        height: 2px;
        background-color: #dee2e6;
        z-index: -1;
    }

    .enrollment-step:last-child[b-tf828ok2lg]::after {
        display: none;
    }

.step-number[b-tf828ok2lg] {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    margin-bottom: 0.5rem;
}

.enrollment-step.active .step-number[b-tf828ok2lg] {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.enrollment-step.completed .step-number[b-tf828ok2lg] {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
}

.step-title[b-tf828ok2lg] {
    font-size: 0.9rem;
    color: #6c757d;
}

.enrollment-step.active .step-title[b-tf828ok2lg] {
    color: #007bff;
    font-weight: bold;
}

.enrollment-step.completed .step-title[b-tf828ok2lg] {
    color: #28a745;
}

.course-image[b-tf828ok2lg] {
    max-height: 200px;
    object-fit: cover;
}

.list-group-item[b-tf828ok2lg] {
    border: none;
    padding: 0.5rem 1rem;
}

.list-group-numbered > .list-group-item[b-tf828ok2lg]::before {
    font-weight: bold;
}
/* _content/RazorUI/Pages/index.cshtml.rz.scp.css */
.hero-section[b-8iqckhgpx1] {
    background: linear-gradient(135deg, #007bff, #6610f2);
    color: white;
    padding: 100px 0;
}
.hero-section .hero-content[b-8iqckhgpx1] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
/* _content/RazorUI/Pages/Shared/_ContentLayout.cshtml.rz.scp.css */
body[b-9z9cgoir8v] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-wrapper[b-9z9cgoir8v] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .content-wrapper[b-9z9cgoir8v] {
        flex-direction: row;
        /* max-width: 1400px; */
        margin: 0 auto;
        padding: 0 15px;
    }
}

@media (min-width: 1400px) {
    .content-wrapper[b-9z9cgoir8v] {
        padding: 0 30px;
    }
}

.course-card[b-9z9cgoir8v] {
    height: 100%;
}

.progress-bar[b-9z9cgoir8v] {
    transition: width 0.5s ease-in-out;
}

.sidebar[b-9z9cgoir8v] {
    width: 250px;
    overflow-y: auto;
}

@media (min-width: 992px) {
    .sidebar[b-9z9cgoir8v] {
        position: sticky;
        top: 70px;
        height: calc(100vh - 70px);
    }
}

.nav-link.active[b-9z9cgoir8v] {
    font-weight: bold;
}

@media (min-width: 992px) {
    .left-sidebar[b-9z9cgoir8v] {
        margin-right: 15px;
    }

    .right-sidebar[b-9z9cgoir8v] {
        margin-left: 15px;
    }
}

@media (min-width: 1400px) {
    .left-sidebar[b-9z9cgoir8v] {
        margin-right: 30px;
    }

    .right-sidebar[b-9z9cgoir8v] {
        margin-left: 30px;
    }
}

.offcanvas[b-9z9cgoir8v] {
    width: 250px;
}

#page-toc-mobile[b-9z9cgoir8v] {
    border-left: 3px solid #007bff;
    padding-left: 15px;
    margin-top: 20px;
}

    #page-toc-mobile .nav-link[b-9z9cgoir8v] {
        padding: 0.25rem 0;
    }
/* _content/RazorUI/Pages/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand[b-kt4xcnyws1] {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a[b-kt4xcnyws1] {
  color: #0077cc;
}

.btn-primary[b-kt4xcnyws1] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active[b-kt4xcnyws1], .nav-pills .show > .nav-link[b-kt4xcnyws1] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top[b-kt4xcnyws1] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-kt4xcnyws1] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-kt4xcnyws1] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-kt4xcnyws1] {
  font-size: 1rem;
  line-height: inherit;
}

.footer[b-kt4xcnyws1] {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}

body[b-kt4xcnyws1] {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.content-wrapper[b-kt4xcnyws1] {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .content-wrapper[b-kt4xcnyws1] {
    flex-direction: row;
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0 15px;
  }
}
@media (min-width: 1400px) {
  .content-wrapper[b-kt4xcnyws1] {
    padding: 0 30px;
  }
}
.sidebar[b-kt4xcnyws1] {
  width: 250px;
  overflow-y: auto;
}
@media (min-width: 992px) {
  .sidebar[b-kt4xcnyws1] {
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
  }
}

}
.nav-link.active[b-kt4xcnyws1] {
  font-weight: bold;
}
@media (min-width: 992px) {
  .left-sidebar[b-kt4xcnyws1] {
    margin-right: 15px;
  }
  .right-sidebar[b-kt4xcnyws1] {
    margin-left: 15px;
  }
}
@media (min-width: 1400px) {
  .left-sidebar[b-kt4xcnyws1] {
    margin-right: 30px;
  }
  .right-sidebar[b-kt4xcnyws1] {
    margin-left: 30px;
  }
}
.offcanvas[b-kt4xcnyws1] {
  width: 250px;
}

.course-card[b-kt4xcnyws1] {
  height: 100%;
}
.progress-bar[b-kt4xcnyws1] {
  transition: width 0.5s ease-in-out;
}
