.prof-button{
    margin-top: 10px;
}

.three-dots span {
  animation-name: blink;
  animation-duration: 1.4s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.three-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.three-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0% {
    opacity: 0.2;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

.nav-active{
    color:#ffff;
}
.menu-tip{
    font-size:10px;
}
.nav-item{
    color: #007bff;
}

.small-nav-tem{
    max-width: 120px;
}

.prof-button{
    margin-top: 10px;
}

.profile-user-img {
    width: 120px;
}
.spinner {
            height: 80px;
            width: 80px;
            margin: auto;
            display: flex;
            position: fixed;
            -webkit-animation: rotation .6s infinite linear;
            -moz-animation: rotation .6s infinite linear;
            -o-animation: rotation .6s infinite linear;
            animation: rotation .6s infinite linear;
            border-left: 6px solid rgba(0, 174, 239, .15);
            border-right: 6px solid rgba(0, 174, 239, .15);
            border-bottom: 6px solid rgba(0, 174, 239, .15);
            border-top: 6px solid rgba(0, 174, 239, .8);
            border-radius: 100%;
          }



          #overlay {
            position: fixed;
            display: none;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0,0,0,0.5);
            z-index: 2;
            cursor: pointer;
          }
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}

@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

/*
    Organization Chart
*/
.highcharts-figure,
.highcharts-data-table table {
    min-width: 360px;
    max-width: 800px;
    margin: 1em auto;
}

.highcharts-data-table table {
    font-family: Verdana, sans-serif;
    border-collapse: collapse;
    border: 1px solid #ebebeb;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: #555;
}

.highcharts-data-table th {
    font-weight: 600;
    padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
    padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
    background: #f8f8f8;
}

.highcharts-data-table tr:hover {
    background: #f1f7ff;
}

#container h4 {
    text-transform: none;
    font-size: 14px;
    font-weight: normal;
}

#container p {
    font-size: 13px;
    line-height: 16px;
}

@media screen and (max-width: 600px) {
    #container h4 {
        font-size: 2.3vw;
        line-height: 3vw;
    }

    #container p {
        font-size: 2.3vw;
        line-height: 3vw;
    }
}

/* Specific students SMS form */
.class-filter-check{
    margin-right: 10px;
}
.recipients-names{
    padding: 20px 20px 10px 20px;
    background-color: #f4f6f9;
}
.student-item {
    flex: 0 0 auto;
    background: #e9ecef;
    padding: 5px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
}

.student-item button {
    border: none;
    background: transparent;
    font-weight: bold;
    color: red;
    margin-left: 8px;
    cursor: pointer;
}

.student-item .restore-btn {
    color: green;
}

.students-container {
    display: flex;
    flex-wrap: wrap;
    overflow-x: visible;
    padding: 10px;
    gap: 10px;
    min-height: 60px;
    visibility: hidden;
}

.accordion-collapse.show .students-container {
    visibility: visible;
}

.accordion-button {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
}

.accordion-item {
    margin-bottom: 3px;
}

.full-width {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

.class-accordion {
    transition: all 0.3s ease;
}

.accordion-collapse {
    overflow: hidden;
    transition: height 0.3s ease;
}

.accordion-collapse.collapse:not(.show) {
    display: none !important;
    height: 0 !important;
}

.accordion-body {
    display: block;
}

/* Ensure consistent alignment for dropdowns */
.form-group label {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
}
.form-select {
    height: 38px; /* Standardize dropdown height */
}
.form-row .row {
    margin-bottom: 1.5rem; /* Consistent spacing */
}

/* Notifications */
.notification-list {
    width: 460px !important; /* Fixed width always */
    max-height: 300px; /* Set max height for the container */
}

.notif-container {
    max-height: none; /* Remove fixed max-height to allow content to expand */
    overflow-y: visible; /* Remove scrollbar */
    word-wrap: break-word; /* Ensure long words break */
    white-space: normal; /* Allow text to wrap naturally */
    padding: 8px; /* Add padding for better spacing */
}

.notification-item {
    padding: 8px;
    border-bottom: 1px solid #e9ecef;
    word-wrap: break-word; /* Apply word-wrap to individual items */
    white-space: normal; /* Allow wrapping in items */
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-unread {
    background-color: #f8f9fa;
    font-weight: bold;
}

.notif-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2px;
}

.notif-time {
    font-size: 0.75rem;
    color: #6c757d;
}

.mark-read-btn {
    font-size: 0.75rem;
    cursor: pointer;
    color: #0d6efd;
    white-space: nowrap;
    background: none;
    border: none;
    padding: 0;
}

#notif-count {
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 50%;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.static-content {
    margin-bottom: 10px; /* Space between buttons and dynamic content */
}
#loadingSpinner {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1000; /* Above modal content */
    justify-content: center;
    align-items: center;
}
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
.spinner-circle {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
.spinner-text {
    color: #fff;
    margin-left: 10px;
}

