/* styles.css */

/* MAIN COLORS */

a {
    cursor: pointer !important;
}

.c-dk-grn {
    background-color: rgb(85, 97, 97);
    color: white;
}

.c-blue {
    background-color: rgb(34, 37, 82);
}

.c-lightblue {
    background-color: #3498db;
    border-color: #3498db !important;
}

.red-overlay {
    background-color: rgba(255, 0, 0, 0.3) !important;
}

.red-bgcol {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    Your learning is about to get a Boost !
}

.gray-overlay {
    background-color: hsla(205, 8%, 59%, 0.3) !important;
}

.blue-overlay {
    background-color: hsl(204, 70%, 53%, 0.3) !important;
}

.blue-bgcol {
    background-color: hsl(204, 70%, 53%, 1) !important;
}

.green-overlay {
    background-color: rgba(0, 255, 0, 0.3) !important;
}

.green-bgcol {
    background-color: #28a745 !important;
    color: #fff !important;
    border-color: #28a745 !important;
}

.purple-overlay {
    background-color: rgba(128, 0, 128, 0.3) !important;
}

.purple-bgcol {
    background-color: rgba(128, 0, 128, 1) !important;
}

.orange-overlay {
    background-color: rgba(255, 165, 0, 0.3) !important;
}

.orange-bgcol {
    background-color: rgba(255, 165, 0, 1) !important;
    color: #333 !important;
}

button.c-dk-grn:hover {
    background-color: rgb(105, 117, 117);
}

button.c-blue:hover {
    background-color: rgb(54, 57, 102);
}

button.c-lightblue:hover {
    background-color: #5dade2;
}

button.red-overlay:hover {
    background-color: rgba(255, 100, 100, 0.5) !important;
}

button.red-bgcol:hover {
    background-color: #e66771 !important;
    border-color: #e66771 !important;
}

button.blue-overlay:hover {
    background-color: hsla(204, 70%, 63%, 0.5) !important;
}

button.blue-bgcol:hover {
    background-color: hsla(204, 70%, 63%, 1) !important;
}

button.green-overlay:hover {
    background-color: rgba(100, 255, 100, 0.5) !important;
}

button.green-bgcol:hover {
    background-color: #34d058 !important;
    border-color: #34d058 !important;
}

button.purple-overlay:hover {
    background-color: rgba(180, 0, 180, 0.5) !important;
}

button.purple-bgcol:hover {
    background-color: rgba(180, 0, 180, 1) !important;
}

button.orange-overlay:hover {
    background-color: rgba(255, 185, 30, 0.5) !important;
}

button.orange-bgcol:hover {
    background-color: rgba(255, 185, 30, 1) !important;
    border-color: rgba(255, 185, 30, 1) !important;
}


.course-card.active-course {
    border: 2px solid #007bff;
    /* Example: blue border */
    background-color: #e0f7fa;
    /* Example: light blue background */
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    /* Example: blue glow */
    transform: scale(1.05);
    /* Slightly enlarge active card */
    opacity: 1;
}

.main-router {
    margin-left: 140px;
}

/* CSS styles for the sidebar navigation */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 130px;
    /* Adjust width as needed */
    padding: 0px;
    /* Add padding to the sidebar */
}

.logo {
    padding: 15px;
    padding-top: 7px;
    padding-bottom: 5px;
}

.logo img {
    width: 100%;
    margin-bottom: 0px;
    /* Add margin below the logo */
}

.nav-tabs {
    display: flex;
    flex-direction: column;
    color: white;
    /* Set font color to white */
    align-items: center;
    /* Center items horizontally */
    padding-bottom: 20px;
    /* Add padding to the bottom of nav-tabs */
    margin-top: auto;
    /* Push logout button to the bottom */
    text-align: center;
    /* Push logout button to the bottom */
}

.nav-tabs img {
    width: 28px;
    margin-bottom: 5px;
    /* Add margin below the image */
}

.nav-tabs span {
    font-size: .9em;
    font-weight: 400;
}

.router-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 6px;
}

.router-link span {
    color: white;
    /* Set font color to white */
    font-size: 13px;
    /* Set font size to larger */
}

.spaceTopSide {
    /*margin-top: 25px;*/
    align-items: center;
}

.router-link-active {
    background-color: rgba(255, 255, 255);
    padding: 6px;
    width: 100%;
}


.popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    /* Adjusted z-index */
}

.popup-content {
    background-color: white;
    border-radius: 5px;
    width: 60%;
    max-width: 600px;
    margin: 100px auto;
    padding: 20px;
    position: relative;
    /* Added position relative */
    z-index: 1001;
    /* Adjusted z-index */
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close {
    cursor: pointer;
}

.popup-body {
    margin-top: 20px;
}

.event-tooltip {
    position: fixed;
    z-index: 1005;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
    max-width: 300px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
}

.event-tooltip strong {
    font-weight: bold;
}

.event-tooltip em {
    font-style: italic;
}

.event-tooltip br {
    margin-bottom: 5px;
}

#calendar {
    width: 100%;
    /* Use full width by default */
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1500;
}

.internal-loading {
    position: absolute;
    width: 87%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1500;
}

.loading-circle {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-spinner.pulse {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #3498db;
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

.loading-spinner.squares {
    width: 50px;
    height: 50px;
    position: relative;
    animation: squares-rotate 1.2s linear infinite;
}

.loading-spinner.squares div {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #3498db;
}

.loading-spinner.squares div:nth-child(2) {
    top: 0;
    left: 20px;
}

.loading-spinner.squares div:nth-child(3) {
    top: 0;
    left: 40px;
}

.loading-spinner.squares div:nth-child(4) {
    top: 20px;
    left: 40px;
}

.loading-spinner.squares div:nth-child(5) {
    top: 40px;
    left: 40px;
}

.loading-spinner.squares div:nth-child(6) {
    top: 40px;
    left: 20px;
}

.loading-spinner.squares div:nth-child(7) {
    top: 40px;
    left: 0;
}

.loading-spinner.squares div:nth-child(8) {
    top: 20px;
    left: 0;
}

@keyframes squares-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-spinner.balls {
    text-align: center;
    margin-top: 20px;
}

.loading-spinner.balls div {
    width: 20px;
    height: 20px;

    background-color: rgb(34, 37, 82);
    background-color: #3498db;
    border-radius: 50%;
    display: inline-block;
    animation: balls-bounce 0.4s infinite alternate ease-in-out;
}

.loading-spinner.balls div:nth-child(2) {
    animation-delay: 0.1s;
}

.loading-spinner.balls div:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes balls-bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

.logo-container {
    margin-top: 20px;
}

/* Media query for smaller screens (e.g., mobile devices) */
@media only screen and (max-width: 600px) {
    #calendar {
        width: 80%;
        /* Adjust the width for smaller screens */
        margin: 0 auto;
        /* Center the calendar on smaller screens */
    }
}

.courses-container {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.course-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.course-card {
    width: 155px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    opacity: .8;
}

  .canvas-course-card {
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    opacity: 0.8;
    cursor: pointer;
}


.canvas-course-image {
    position: relative;
}

.canvas-course-image img {
    width: 35%;
    height: auto;
    padding: 5px 0px 0px 5px;
}

.course-image {
    position: relative;
}

.course-image img {
    width: 100%;
    height: auto;
}

.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    background-color: hsl(204, 70%, 53%, 0.3);
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.course-name {
    padding: 5px;
    text-align: center;
    background-color: #fff;
    font-size: 0.85em;
    font-weight: bold;
}

.application-card {
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    text-align: center;
    margin: 10px;
    /* Add some margin if needed */
}

.application-card p {
    padding: 10px;
}

.application-image {
    padding: 25px;
    width: 100%;
    height: auto;
    position: relative;
}

.application-image img {
    width: 100%;
    height: auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.application-details {
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.application-name {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.launch-button {
    background-color: hsl(204, 70%, 53%, 0.9);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* Space between icon and text */
}

.launch-button:hover {
    background-color: hsl(204, 70%, 53%, 1);
    transform: scale(1.05);
}

.launch-button img {
    width: 20px;
    /* Size of the icon */
    height: 20px;
}



.filter-box {
    margin-bottom: 20px;
    /* Adds some space below the filter box */
}

.filter-box .input-container {
    position: relative;
    /* Ensure the input and label are positioned relative to this container */
    margin-bottom: 10px;
    /* Adds space between input containers */
}

.filter-box .filter-label {
    color: #000;
    /* Placeholder color */
    font-size: 16px;
    /* Font size */
    transition: transform 0.2s ease-out, font-size 0.2s ease-out, color 0.2s ease-out;
    /* Added transition for label movement */
}

.filter-box .label-inside {
    transform: translateY(0) scale(1);
    /* Adjust translateY based on your design */
    font-size: 12px;
    /* Adjust font size */
    color: #555;
    /* Adjust label color */
}

.filter-box .filter-input {
    width: 175px;
    /* Initial width */
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: width 0.4s ease-in-out;
    /* Added transition for input width */
}

.filter-box .filter-input:focus {
    width: 350px;
    /* Ensure input expands on focus */
    outline: none;
    /* Remove default focus outline */
    border-color: #007bff;
    /* Example: Highlight border on focus */
}

.filter-box .filter-input:focus+.filter-label {
    transform: translateY(-140%) scale(0.8);
    /* Adjust translateY based on your design */
    font-size: 12px;
    /* Adjust font size */
    color: #555;
    /* Adjust label color */
}





.details-container {
    width: 100%;
}

.details-item {
    display: flex;
    align-items: center;
    /* Align items vertically */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 20px;
}

.details-item-left {
    flex: 0 0 250px;
    /* Fixed width for image (adjust as needed) */
    margin-right: 20px;
    /* Space between image and content */
    display: flex;
    /* Use flexbox for centering */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}

.details-item-left img {
    max-width: 75%;
    /* Ensure image does not exceed container */
    height: auto;
    display: block;
    border-radius: 8px;
    /* Rounded corners for image */
}

.details-item-right {
    flex: 1;
    /* Flexible width for content */
    position: relative;
}

.top-right-section {
    position: absolute;
    top: -15px;
    right: -10px;
    display: flex;
    border-bottom: 4px solid #5985E1;
}

.top-right-section img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.top-right-section h3 {
    cursor: pointer;
    margin: 0px;
    font-weight: bold;
    color: #5985E1;
}

.details-item-right h2 {
    font-size: 20px;
    /* Adjust font size as needed */
    margin-top: 0;
    margin-bottom: 10px;
    /* Adjust spacing */
}

.details-item-right p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    /* Adjust spacing */
}

.buttons-container {
    display: flex;
    justify-content: flex-start;
    /* Adjust alignment as needed */
    margin-top: 10px;
}

.buttons-container button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
}

.view-site-button,
.request-subscription-button {
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* Space between icon and text */
    margin-top: 5px;
    /* Adjust spacing between buttons */
    margin-right: 15px;
    /* Adjust spacing between buttons */
}

.view-site-button:hover,
.request-subscription-button:hover {
    transform: scale(1.05);
    /* Example: Increase size on hover */
}


@media (max-width: 768px) {
    .details-item {
        flex-direction: column;
    }

    .details-item-left {
        flex: none;
        /* No flex for image on smaller screens */
        width: 100%;
        /* Full width on smaller screens */
        margin-bottom: 20px;
        /* Space between image and content */
    }
}


.sticky-div {
    position: -webkit-sticky;
    /* For Safari */
    position: sticky;
    top: 0;
    /* Stick to the top */
    background-color: #ffffff;
    /* Background color of the sticky div */
    padding: 10px 20px;
    /* Padding for content inside the sticky div */
    z-index: 1000;
    /* Ensure the sticky div appears above other content */
    /* Additional styles as needed */
}

.loading-goats {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.goat {
    width: 50px;
    height: 50px;
    background-image: url('/assets/icons/goat.png');
    /* Add the path to your goat image */
    background-size: contain;
    background-repeat: no-repeat;
    animation: jump 1s infinite ease-in-out;
}

.respectful_goat {
    width: 50px;
    height: 50px;
    background-image: url('/assets/icons/respectful.png');
    /* Add the path to your goat image */
    background-size: contain;
    background-repeat: no-repeat;
    animation: jump 1s infinite ease-in-out;
}

.goat:nth-child(2) {
    animation-delay: 0.2s;
}

.goat:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes jump {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}










.announcements-container {
    /*  max-height: 500px; Adjust as needed */
    overflow-y: hidden;
}

.announcement-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 10px;
    /* Adjust padding as needed */
}

.announcement-item:hover {
    transform: translateY(-5px);
}

.announcement-header {
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
}

.announcement-header img {
    width: 24px;
    padding: 0;
    margin: -5px 5px;
}

.announcement-content {
    padding: 10px;
    font-size: 14px;
    color: #333333;
    all: unset;
    /* Reset all CSS properties */
    display: block;
    /* Ensure it's displayed as a block if needed */
}

.announcement-footer {
    padding: 0px 10px;
    background-color: #f1f1f1;
    text-align: right;
    font-size: 12px;
    color: #666666;
}

.scroll-buttons {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 103%;
    pointer-events: none;
}

.scroll-button {
    background-color: #484e55;
    color: #ffffff;
    border: none;
    padding: 10px;
    cursor: pointer;
    pointer-events: auto;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.scroll-button:hover {
    background-color: #0056b3;
}

.dashboard-sections {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.courses-container {
    margin-bottom: 20px;
}

.course-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.dashboard-sections {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.announcements-wrapper {
    position: relative;
}

.other-items,
.announcements-wrapper {
    flex: 1 1 45%;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin: 25px 25px;
}

.other-items ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.other-items li {
    background-color: #f9f9f9;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


@media (max-width: 768px) {

    .other-items,
    .announcements-wrapper {
        flex: 1 1 100%;
    }
}








/* Documents.css */
.documents-wrapper {
    width: 100%;
    /*  max-width: 800px; Adjust as needed */
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.search-input {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    margin-bottom: 10px;
}

.total-documents {
    font-size: 1em;
    margin-bottom: 10px;
    color: #333;
}

.docscroll-buttons {
    margin-bottom: 10px;
}

.documents-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* Adjust the gap between documents */
}

.document-item {
    width: calc(50% - 10px);
    /* Adjust the width of each document item */
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    box-sizing: border-box;
}

.document-header {
    font-weight: bold;
    margin-bottom: 5px;
    cursor: pointer;
}

.document-content,
.document-footer {
    margin-top: 5px;
    font-size: 0.9em;
    max-width: 65%;
}

.document-content {}

/* Documents.css */
.search-input {
    width: 100%;
    max-width: 800px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.docscroll-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.docscroll-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.docscroll-button:hover {
    background-color: #0056b3;
}









/* Add this to a global CSS file or within a <style> block in your main HTML or root component */

.management-list {
    padding: 20px;
}

.management-table {
    width: 100%;
    border-collapse: collapse;
}

.management-table th,
.management-table td {
    border: 1px solid #ccc;
    padding: 10px;
}

.management-table th {
    background-color: #f4f4f4;
}

.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    width: 500px;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

button {
    margin-top: 10px;
    margin-right: 5px;
}


.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    max-width: 80%;
    width: 100%;
    max-height: 90%;
    overflow: auto;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
}

.form-field {
    flex: 1 1 45%;
    margin: 10px;
}

.form-field label {
    display: block;
    margin-bottom: 5px;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.form-field img {
    width: 40px;
    height: 40px;
}

.imageWithInput {
    display: flex;
}

.form-field span {
    margin-right: 10px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 20px;
}

.search-results {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    overflow: auto;
    height: 290px;
}

.search-results li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
    margin: 0;
}

.search-results button {
    margin-left: 10px;
}

.announcement-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.announcement-title {
    flex-grow: 1;
    margin-left: 10px;
}

.edit-button {
    margin-left: auto;
}








.management-list {
    font-family: Arial, sans-serif;
    padding: 20px;
}

.management-list .create-button {
    margin-bottom: 10px;
}

.management-list .search-input {
    margin-bottom: 10px;
    padding: 5px;
    width: 300px;
}

.management-list .management-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
}

.management-list .management-table th,
.management-list .management-table td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}

.management-list .management-table th {
    background-color: #f2f2f2;
}

.management-list .management-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.management-list .management-table tr:hover {
    background-color: #e6f7ff;
    cursor: pointer;
}

.management-list .user-form {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.management-list .form-section {
    margin-bottom: 15px;
}

.management-list .form-section h3 {
    cursor: pointer;
    margin-top: 0;
    padding: 7px;
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    font-size: large;
}

.management-list .form-section h3:hover {
    background-color: #e6e6e6;
}

.management-list .form-section.collapsed>div {
    display: none;
}

.management-list .form-row {
    display: flex;
    margin-bottom: 10px;
    width: 100%;
}

.management-list .form-field-row {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.management-list .form-field-row .iconButton {
    position: absolute;
    top: 0;
    right: 0;
}

.management-list .form-divide {
    margin-bottom: 10px;
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px;
}

.management-list .form-field {
    flex: 1;
    margin-right: 10px;
}

.management-list .form-field label {
    display: block;
    margin-bottom: 5px;
}

.management-list .form-field input,
.management-list .form-field select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.management-list .form-field input[type="checkbox"] {
    width: auto;
    margin-right: 5px;
}

.management-list .form-actions {
    margin-top: 20px;
    text-align: right;
}

.management-list .form-actions button {}

.management-list .form-actions button:hover {}







.date-display {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2em;
    font-weight: bold;
}

.user-list {
    display: flex;
    flex-direction: column;
}

.user-section {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
}

.user-card {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    text-align: center;
    width: fit-content;
}

.user-card img.user-image {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.user-card h4 {
    margin: 10px 0;
}

.attendance-buttons {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.attendance-buttons button {
    border: none;
    background-color: #ccc;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.attendance-buttons button.present {
    background-color: green;
}

.attendance-buttons button.absent {
    background-color: red;
}

.attendance-buttons button.late {
    background-color: orange;
}

@media (max-width: 600px) {
    .user-card {

        width: fit-content;
    }

    .date-display {
        position: inherit;
        font-size: 1.2em;
        font-weight: bold;
    }
}

@media (min-width: 601px) {
    .user-card {
        width: fit-content;
    }
}

@media (min-width: 901px) {
    .user-card {
        width: fit-content;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.close-button {
    position: absolute;
    top: -5px;
    right: 11px;
    background: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: black;
    padding: 1px;
}

.document-viewer {
    max-width: 80vw;
    max-height: 80vh;
    overflow: auto;
}

.document-viewer img {
    max-width: 100%;
    height: auto;
}

.document-viewer a {
    display: block;
    word-wrap: break-word;
    max-width: 100%;
}



.document-item {
    /* Adjust document card styles as needed */
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
}

.document-actions {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    justify-content: flex-end;
}

.iconButton {
    cursor: pointer;
    margin-left: 10px;
    /* Adjust margin between buttons */
    margin-right: 7px;
    /* Adjust margin between buttons */
    width: 34px;
    /* Adjust icon button size */
    height: 34px;
}

.emptyDataDiv {
    text-align: center;
}

.topRightFirstIcon {
    cursor: pointer;
    margin-left: 10px;
    /* Adjust margin between buttons */
    margin-right: 7px;
    /* Adjust margin between buttons */
    width: 34px;
    /* Adjust icon button size */
    height: 34px;
    position: absolute;
    top: 25px;
    right: 70px;
}

.refreshIconButton {
    cursor: pointer;
    margin-left: 10px;
    /* Adjust margin between buttons */
    margin-right: 7px;
    /* Adjust margin between buttons */
    width: 34px;
    /* Adjust icon button size */
    height: 34px;
    position: absolute;
    top: 35px;
    right: 35px;
}







.form-wrapper {
    max-width: 600px;
    margin: auto;
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.form-row-long {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: center;
}

.form-row-long .form-field {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-row-long .form-field label {
    margin: 0;
    white-space: nowrap;
}

.form-row-long .form-field input[type="checkbox"] {
    margin: 0;
}

.form-field {
    flex: 1;
    margin-right: 10px;
}

.form-field label {
    display: block;
    margin-bottom: 5px;
}

.form-field input[type="text"],
.form-field input[type="file"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.drop-area {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}

.drop-area p {
    margin: 0;
}

.image-preview {
    margin-top: 10px;
}

.image-preview img {
    max-width: 100%;
    height: auto;
}

.user-previewImage {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
}


.dropbox {
    border: 2px dashed #ccc;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    color: #999;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
}

.dropbox:hover {
    border-color: #aaa;
    background-color: #f9f9f9;
}

.dropbox.dragover {
    border-color: #333;
    background-color: #e6e6e6;
}

.version-tag {
    font-size: .7em !important;
    font-weight: 200 !important;
    cursor: pointer;
}






.search-area {
    align-items: center;
    margin-bottom: 20px;
}

.search-filters {
    margin-right: 10px;
}

.filter-dropdown {
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.search-input {
    padding: 5px 10px;
    margin-right: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.search-button {
    padding: 5px 10px;
    margin-right: 10px;
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}

.add-button {
    padding: 5px 10px;
    background-color: rgb(34, 37, 82);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}

.delete-button {
    padding: 5px 10px;
    background-color: #e0e0e0;
    color: black;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}

.pagination-info {
    align-items: center;
    margin-left: auto;
}

.pagination-info span {
    margin-right: 10px;
}

.pagination-info button {
    padding: 5px;
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}

.management-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.management-table th,
.management-table td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
}

.red-bgcol {
    background-color: #ff4d4d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.no-results-message {
    text-align: center;
    /* Center the text horizontally */
    font-size: 24px;
    /* Make the font size larger */
    font-weight: bold;
    /* Make the text bold */
    color: #333;
    /* Dark color for the text */
    margin-top: 20px;
    /* Add some space above the message */
}




.searchable-select {
    position: relative;
    display: flex;
    flex-direction: column;
}

.dropdown-container {
    position: relative;
}

.searchable-select input {
    width: 100%;
    margin-bottom: 8px;
}

.dropdown-wrapper {
    position: absolute;
    width: 100%;
    z-index: 10;
    background: white;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
}

.dropdown-wrapper option {
    padding: 8px;
    cursor: pointer;
}

.dropdown-wrapper option:hover {
    background-color: #f0f0f0;
}




.curriculum-container {
    margin: 20px;
}

.curriculum-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.curriculum-header {
    background-color: #f9f9f9;
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.assignments-docs-wrapper {
    display: flex;
}

.assignments {
    flex: 1;
    padding: 10px;
}

.assignment-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.assignment-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.assignment-info {
    flex: 1;
}

.assignment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.assignment-title {
    font-weight: bold;
    font-size: 1.2em;
}

.assignment-score {
    font-size: 1em;
    color: #666;
}

.assignment-instructions {
    margin-top: 5px;
    font-size: 0.9em;
    color: #666;
    all: unset;
    /* Reset all CSS properties */
    display: block;
    /* Ensure it's displayed as a block if needed */
}

.assignment-actions {
    display: flex;
    align-items: center;
}

.icon-display-actions {
    display: inline-flex;
    align-items: center;
}

.icon-display-actions .supporting-docs-text {
    cursor: pointer;
    font-size: 14px;
    margin-right: 7px;
}

.assignment-status input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    appearance: none;
    outline: none;
    border: 2px solid #666;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.assignment-status input[type="checkbox"]:checked {
    background-color: #4caf50;
    border-color: #4caf50;
}

.assignment-status input[type="checkbox"]:indeterminate {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #555;
    color: white;
    padding: 5px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #444;
}

/*
  .assignment-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.assignment-actions .iconButton {
    cursor: pointer;
}
*/

.assignment-actions .supporting-docs-text {
    cursor: pointer;
    font-size: 14px;
    margin-right: 7px;
}

.modaltable {
    max-height: 250px;
    overflow: auto;
}

.modaltable td {
    padding: 0;
}


.user-assessment-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.user-assessment-modal-content {
    background: white;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.user-assessment-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.user-assessment-modal-user-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.user-assessment-modal-user-profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.core-group {
    margin-bottom: 20px;
    font-size: 0.7em;
}

.user-assessment-modal-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.user-assessment-modal-table th,
.user-assessment-modal-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.user-assessment-modal-table th {
    background-color: #f2f2f2;
}

.user-assessment-modal-dropbox {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}

.user-assessment-modal-green-bgcol {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}

.user-assessment-modal-score-highly-proficient {
    color: #008000;
    /* Dark Green */
    color: rgb(34, 37, 82);
    font-weight: bold;
}

.user-assessment-modal-score-proficient {
    color: #008000;
    /* Gold */
    font-weight: bold;
}

.user-assessment-modal-score-approaching-proficient {
    color: #FF8C00;
    /* Dark Orange */
    color: #BB9F0B;
    /* Gold */
    font-weight: bold;
}

.user-assessment-modal-score-below-proficient {
    color: #B22222;
    /* Firebrick Red */
    font-weight: bold;
}

.user-assessment-modal-score-pending {
    color: #A9A9A9;
    /* Dark Gray */
    font-weight: bold;
}

.arrow-selector {
    display: flex;
}

.arrow {
    cursor: pointer;
    font-size: 24px;
    padding: 5px;
    transition: color 0.3s ease;
}

.arrow.active {
    color: orange;
}



.chart-container {
    display: flex;
    flex-wrap: wrap;
    /* Allows wrapping to the next line if space is limited */
    gap: 10px;
    /* Space between items */
}

.chart-item {
    flex: 1 1 35%;
    /* Adjust the percentage to control how many charts per row */
    min-width: 250px;
    /* Minimum width for the items */
    box-sizing: border-box;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    /* Allows wrapping to the next line if space is limited */
    gap: 10px;
    /* Space between items */
}

.card-item {
    flex: 1 1 35%;
    /* Adjust the percentage to control how many charts per row */
    min-width: 250px;
    /* Minimum width for the items */
    box-sizing: border-box;
}

.userMasteryChartDiv {
    width: 500px;
    height: 500px;
}

.ColumnChartDiv {
    width: 100%;
    height: 500px;
}

.AngularChartDiv {
    width: 500px;
    height: 330px;
}

.TreeChartDiv {
    width: 100%;
    height: 550px;
}

.noCurrBody h3 {
    text-align: center;
}

.SingleClassroomAttendanceChartDiv {
    width: 100%;
    height: 150px;
}

.ClassroomAttendanceChartDiv {
    width: 100%;
    height: 10000px;
}

.arrowExpandImg img {
    width: 26px;
    margin-bottom: -8px;
}

.usersReportHeader {
    display: inline-grid;
}

.usersReportHeader p {
    margin: 0;
    cursor: pointer;
}

.filterItem {
    display: inline-flex;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    font-size: 1.2em;
}

.filterItem img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.subIconArea {
    display: flex;
    align-items: center;
}

.subIconArea label {
    padding-right: 10px;
}

.lessonSubmission {
    display: inline-flex;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    font-size: 1.2em;
    cursor: pointer;
}

.canvasLaunch {
    display: inline-flex;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    font-size: 1.2em;
    cursor: pointer;
    margin-right: 25px;
}

.lessonSubmission img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.canvasLaunch img {
    height: 30px;
    cursor: pointer;
}

.toggleIconButton {
    cursor: pointer;
    margin-left: 10px;
    /* Adjust margin between buttons */
    margin-right: 7px;
    /* Adjust margin between buttons */
    width: 34px;
    /* Adjust icon button size */
    height: 34px;
    position: absolute;
    right: 30px;
    top: 24px;
}

.actionIconButton {
    cursor: pointer;
    margin-left: 10px;
    /* Adjust margin between buttons */
    margin-right: 7px;
    /* Adjust margin between buttons */
    width: 34px;
    /* Adjust icon button size */
    height: 34px;
    margin-bottom: -9px;
}

.iconBesideText {
    width: 34px;
    /* Adjust icon button size */
    height: 34px;
    margin-bottom: -9px;
}

.attnReport_header {
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.attnReport_refreshIconButton {
    cursor: pointer;
    margin-left: 5px;
    /* Adjust margin between buttons */
    margin-right: 5px;
    /* Adjust margin between buttons */
    width: 34px;
    /* Adjust icon button size */
    height: 34px;
    position: absolute;
    top: 5px;
    right: 5px;
}



.open-comm-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
    /* Ensure it's above other elements */
}

.open-comm-btn img {
    transform: scaleX(-1);
    width: 40px;
}

.open-comm-btn button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.open-comm-btn button:hover {
    background: #0056b3;
}

.no-border.ql-container.ql-snow {
    border: none !important;
}

.inlineHeader {
    display: block ruby;
    display: -webkit-inline-box;
    cursor: pointer;
}

.inlineHeader {
    display: block ruby;
    cursor: pointer;
}

.inlineHeader img {
    width: 26px;
    margin-bottom: -7px;
    margin-right: 5px;
}

/*
    Soft Blue: #87CEEB  | #1E90FF
    Light Green: #98FB98
    Light Purple: #DDA0DD
*/
.ql-snow .ql-editor pre.ql-syntax {
    background-color: cornflowerblue !important;
    color: #000 !important;
    font-size: 1.4em;
}

.ql-snow .ql-editor blockquote {
    font-size: 1.3em;
}

pre {
    border-left: none;
}


.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 4px;
    color: white;
    z-index: 2000;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.notification.info {
    background-color: #2196F3;
}

.notification.error {
    background-color: #F44336;
}

.notification.warning {
    background-color: #FF9800;
}

.info-card {
    flex: 1;
    min-width: 250px;
    background-color: #2d5a87;
    /* Slightly lighter blue for card background */
    border: 1px solid #2c5282;
    /* Lighter blue border */
    border-radius: 4px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    /* White text for contrast */
}

.info-card h4 {
    margin: 0 0 10px 0;
    color: #ffffff;
    /* White text for contrast */
    font-size: 1.1em;
}

.info-card h6 {
    margin: 0 0 10px 0;
    color: #ffffff;
    /* White text for contrast */
    margin: 0px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    margin: 0;
}

.info-item {
    padding: 8px 0;
    color: #e2e8f0;
    /* Light gray for readability */
    border-bottom: 1px solid #2c5282;
    /* Lighter blue border */
}

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

.info-item:empty {
    display: none;
}

/* Ensure info-row maintains flex layout */
.info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}



/* Adjust for mobile */
@media (max-width: 768px) {
    .info-card {
        min-width: 100%;
        margin-bottom: 15px;
    }

    .info-row {
        flex-direction: column;
    }
}

.classroom-list {
    list-style: none;
    padding: 0;
}

.classroom-item {
    margin: 10px 0;
}

.user-list {
    list-style: none;
    margin-left: 20px;
}

.student-count-label {
    font-size: 2rem;
    /* Moderate size for the label */
    font-weight: 500;
    /* Medium weight for clarity */
    color: #333;
    /* Dark color for readability */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    /* Subtle shadow for graphical effect */
    margin-bottom: 10px;
    /* Space below the label */
}

.student-count-number {
    font-size: 18.5rem;
    /* Large size for prominence */
    font-weight: 700;
    /* Bold for emphasis */
    color: #007bff;
    /* Blue to match chart theme */
    text-shadow: 6px 6px 4px rgba(0, 0, 0, 0.2);
    /* Subtle shadow for graphical effect */
    display: inline-block;
    /* Ensure proper spacing */
    margin-left: 10px;
    /* Space between label and number */
}

@media (max-width: 768px) {
    .student-count-number {
        font-size: 2.5rem;
        /* Smaller size for mobile */
    }
}


.lesson-submission-button {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.icon-wrapper {
    position: relative;
    display: inline-block;
}

.lesson-icon {
    width: 24px; /* Adjust size as needed */
    height: 24px;
    vertical-align: middle;
}

.badge {
    position: absolute;
    top: -12px; /* Adjust to position the badge */
    right: -12px; /* Adjust to position the badge */
    background-color: #ff0000; /* Red background */
    color: #ffffff; /* White text */
    border-radius: 50%; /* Circular badge */
    padding: 8px 8px; /* Padding for the number */
    font-size: 12px; /* Adjust font size */
    font-weight: bold;
    line-height: 1;
    min-width: 16px; /* Ensure badge is wide enough for single digits */
    text-align: center;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3); /* Optional: subtle shadow for depth */
}


.btn-small {
    font-size: .8em !important;
  padding: 0px 7px;
}

.announcement-header {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    user-select: none;
}

.announcement-header:hover {
    background: #f0f0f0;
}

.announcement-content {
    padding: 15px;
    background: white;
    border-bottom: 1px solid #ddd;
    transition: all 0.3s ease;
}

.expand-arrow {
    font-size: 1.1em;
    transition: transform 0.2s;
}

/* Slide from right animation */
.slide-right-enter-active,
.slide-right-leave-active {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-right-enter-from,
.slide-right-leave-to {
  transform: translateX(100%);
  opacity: 0.7;
}

/* Optional: make overlay a bit darker when panel is open */
.modal-overlay:has(.info-panel) {
  background-color: rgba(0, 0, 0, 0.75);
}

.modal-overlay-with-info {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.modal-content-with-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    max-width: 80%;
    width: 100%;
    max-height: 90%;
    overflow: auto;
    display: flex;    
}


.close-button {
  position: absolute;
  top: 12px;
  right: 20px;
  z-index: 100;
  font-size: 28px;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
}

.info-toggle-btn {
  position: absolute;
  top: 15px;
  right: 60px;                /* stays visible when panel is closed */
  z-index: 90;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.document-area {
  flex: 1;                    /* takes all available space */
  padding: 20px;
  overflow-y: auto;
}

.document-viewer {
  margin-top: 15px;
}

.document-viewer img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

/* ── Slide-out Info Panel ── */
.info-panel {
  width: 425px;               /* fixed width for the panel */
  background: #f8f9fa;
  border-left: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease;
  transform: translateX(0);
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 100;
}

.info-header {
  padding: 5px 0px 0px 20px;
  border-bottom: 1px solid #ddd;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  z-index: 10;
}

.info-header h4 {
  margin: 0;
}

.close-panel-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #777;
  cursor: pointer;
}

.info-body {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
}

.info-body li {
    list-style: none;
}

/* Optional: subtle animation when opening/closing */
.info-panel {
  animation: slideIn 0.35s ease forwards;
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}


    .course-info {
    padding: 12px 16px;
    font-size: 0.95rem;
    text-align: center;
    background: #f9f9f9;
    }

    .grade, .percent {
    margin: 6px 0;
    }

    .grade strong, .percent strong {
    font-size: 1.25rem;
    color: #2c3e50;
    }

    .percent strong {
    color: #27ae60; /* green for progress */
    }


    .canvas-course-card .assignments
    {
        font-size: 12px;
    }

    .canvas-course-card .grade
    {
        font-size: 12px;
    }

    .canvas-course-card .percent
    {
        font-size: 12px;
    }


    .canvas-course-list {
  margin-top: 16px;
}

.canvas-course-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 15px;
  margin-bottom: 8px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.canvas-course-item:hover {
  background: #f8f9fa;
  border-color: #ced4da;
  transform: translateX(4px);
}

.course-name {
  font-weight: 500;
  color: #1a3c5e;
  flex: 1;
}

.course-progress {
  font-weight: 600;
  font-size: 1.05rem;
  color: #198754;
  min-width: 80px;
  text-align: right;
}

.no-courses {
  text-align: center;
  padding: 20px;
  color: #6c757d;
  font-style: italic;
}


.nwea-scores-group {
  margin: 8px 0;
  font-size: 0.95em;
}

.nwea-header {
  font-weight: 600;
  color: #444;
  margin-bottom: 4px;
}

.nwea-scores {
  display: flex;
  gap: 24px;
  align-items: center;
}

.score-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}

.score-label {
  font-size: 0.85em;
  color: #666;
  margin-bottom: 2px;
}

.score-value {
  font-size: 1.4em;
  font-weight: bold;
  color: darkgreen;
}

.score-value.na {
  color: #999;
  font-style: italic;
}

.view-mode-toggle {
  margin: 1.2rem 0 1.8rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 1.05rem;
  color: #444;
}

.toggle-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  user-select: none;
}

.toggle-option input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #0066cc;   /* change this to match your app's primary color */
}

/* Optional: make the selected label bolder or colored */
.toggle-option input[type="radio"]:checked + span {
  font-weight: 600;
  color: #0066cc;
}

/* Mobile adjustment if needed */
@media (max-width: 600px) {
  .view-mode-toggle {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}


.progress-toggle {
  margin: 1.2rem 0 1.8rem;
  display: flex;
  gap: 2.5rem;
}

.toggle-label {
  display: flex;
  gap: 0.6rem;
  cursor: pointer;
  color: #444;
}

.toggle-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #0066cc; /* your brand color */
}

.progress-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.progress-table th,
.progress-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.progress-table th {
  background: #f8f9fa;
  font-weight: 600;
}

.progress-table tr:hover {
  background: #f5f5f5;
}


.student-timeline-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.card-header {
  margin-bottom: 1.5rem;
}

.card-header h3 {
  margin: 0 0 0.25rem;
}

.subtitle {
  color: #666;
  font-size: 0.95rem;
}

.timeline-entries {
  position: relative;
  padding-left: 1.5rem;
}

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.timeline-dot {
  position: absolute;
  left: -28px;
  top: 8px;
  width: 12px;
  height: 12px;
  background: #007bff;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px #007bff33;
}

.timeline-content {
  padding: 0.75rem 1rem;
  border-left: 2px solid #e0e0e0;
}

.entry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.entry-type {
  font-weight: 600;
  color: #2c3e50;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.entry-date {
  color: #7f8c8d;
  font-size: 1.3rem;
}

.entry-submitted,
.entry-classroom,
.entry-meta {
  color: #555;
  font-size: 1.2rem;
  margin: 0.4rem 0;
}

.entry-notes {
  margin-top: 0.8rem;
  white-space: pre-wrap;
  color: #333;
  line-height: 1.45;
}

.empty-state {
  text-align: center;
  color: #777;
  padding: 2rem 0;
}

.attend-card-date
{
    color: steelblue !important;
    font-weight: bold !important;
}

.simple-refesh-icon {
    cursor: pointer;
    margin-left: 5px; /* Adjust margin between buttons */
    margin-right: 5px; /* Adjust margin between buttons */
    width: 34px; /* Adjust icon button size */
    height: 34px;
    position: absolute;
    top: 5px;
    right: 5px;
}


.classroom-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.classroom-tabs button {
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: grey;
}

.classroom-tabs button.active {
    border-bottom: 3px solid #4CAF50;
    font-weight: bold;
    color: black;
}

.role-selector {
        max-width: 400px;
    }

    .features-section {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
    }

    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 12px 24px;
        margin-top: 10px;
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        padding: 3px 12px;
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        transition: all 0.2s;
    }

    .feature-item:hover {
        background: #f0f8ff;
        border-color: #a0d0ff;
    }

    .form-check-input {
        margin-top: 4px;
        margin-right: 10px;
        transform: scale(1.1);
        margin-bottom: 0px;
    }

    .form-check-label {
        font-size: 15px;
        cursor: pointer;
        flex: 1;
        user-select: none;
        margin: 0px;
    }

    .btn-success {
        min-width: 200px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .feature-grid {
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        }
    }