table tr p {
    margin-bottom: 0 !important;
}
.tutor-signup  .form-group {
   margin-bottom: 15px;
}
.tutor-signup .card-body  {
    padding: 30px;
}

.account-pending {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.account-pending .icon-wrap {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: var(--secondary-50);
    margin-bottom: 20px;
}
.account-pending .icon-wrap i {
    font-size: 45px;
    color: var(--secondary);
}
.select-org-item{
    border: 1px solid var(--neutral-3);
    min-height: 100px;
    border-radius: 10px;
    width: 100%;
    gap: 10px;
    padding: 10px 15px;
    cursor: pointer;
}
.select-org-item:hover {
    border: 1px solid var(--primary-100);
    background: var(--primary-50);
}
.select-org-item:not(:last-of-type) {
    margin-bottom: 15px;
}
.select-org-item .logo {
    width: 80px;
    height: auto;
    object-fit: cover;
    border: 1px solid var(--neutral-3);
}
@media screen and (min-width: 992px) {
    .tutor-signup .left-section {
        border-right: 1px solid var(--neutral-3);
    }
}
@media screen and (max-width: 992px) {
    .tutor-signup .left-section, .tutor-signup .right-section {
        padding: 10px;
    }
}
@media screen and (max-width: 768px) {
    .select-org-item {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}
.course-materials .lesson-item {
    display: flex;
    align-items: center;
}
.course-materials .bi-arrows-move {
    cursor: move;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* styles for livewire sortable */
.draggable--is-dragging {
    opacity: 0.8;
}
.draggable-container--is-dragging {
    background-color: var(--neutral-4);
}
.draggable-source--is-dragging {
    opacity: 0.6;
    box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, .2);
    width: 100%;
}
.draggable--over {
    background: var(--neutral-4);
}

.notification-container {
    max-height: 1000px;
    overflow-y: auto;
    padding: 10px;
}
.notification-container::-webkit-scrollbar {
    display: none;
}
.notification-container::-webkit-scrollbar-thumb {
    width: 2px;
    background: var(--neutral-3);
    border-radius: 10px;
}

.list-group-item {
    padding-left: 26px;
}

  .list-group-item.unread {
    background-color: var(--primary-50);
    position: relative;
    cursor: pointer;
  }

  .list-group-item.unread .circle {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--primary-400);
    border-radius: 50%;
  }
  .avatar-wrapper {
    position: relative;
    width: 55px;
    height: 55px;
    margin-right: 1rem;
  }

  .avatar-wrapper .online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background-color: #28a745;
    border: 2px solid white;
    border-radius: 50%;
  }

  .avatar {
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
  }

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

  .notification-title {
    font-weight: 600;
  }

  .notification-message {
    color: #555;
  }

  .notification-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
  }

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

  .action-menu {
    color: #aaa;
    cursor: pointer;
  }
  .list-group-item .dropdown .dropdown-menu {
    min-width: 200px;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
    border: 1px solid var(--neutral-3);
    z-index: 9999;
    overflow: hidden;
  }
  .list-group-item .dropdown .dropdown-menu .dropdown-item {
    padding: 10px 15px;
    color: var(--dark-1);
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
.list-group-item .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: var(--primary-50);
    color: var(--primary);
}