html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

body.swal2-toast-shown .swal2-container {
  z-index: 2000;
}

.selected-page {
  background-color: blue;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
}

.pagination-link {
  margin: 5px 12px;
}

.disabled {
    pointer-events: none;
    background: #e4e4e4;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 999;
  margin: 0 auto;
  top: 100px;
}

.popup-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  width: 400px;
  max-height: 300px;
  overflow: auto;
  margin: 0 auto;
  top: 30px;
}


.close-popup-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.popup-icon {
  cursor: pointer;
}

.record {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  align-items: center;
  justify-content: space-between;
}

.edit-icon {
  cursor: pointer;
  color: #007BFF;
  margin-left: 10px;
}

.delete-icon {
  cursor: pointer;
  color: #007BFF;
  margin-left: 10px;
}

.add-button {
  background-color: #007BFF;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  float: left;
}

.close-button {
  background-color: grey;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  float: right;
}

.course-header {
  cursor: pointer;
}

.course-header::after {
  content: "▶";
  /* Default arrow icon (right arrow) */
  margin-left: 5px;
  font-size: 14px;
  transition: transform 0.2s;
}

.course-expanded::after {
  content: "▼";
  /* Expanded arrow icon (down arrow) */
  transform: rotate(90deg);
}

.course-lessons {
  display: none;
  list-style-type: none;
}

.selected-items-course {
  color: blue;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.slider {
  background-color: #4CAF50;
}

input:focus+.slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

/*--datatable related*/

.buttons-excel {
    background-color: #28a327 !important
}

.buttons-pdf {
    background-color: #cd1616 !important
}
.buttons-copy {
    background-color: #727272 !important
}
.buttons-print {
    background-color: #b7a904 !important;
    margin-right: 5px;
    margin-bottom: 2px
}

.buttons-html5{
    margin-right:5px;
    margin-bottom:2px
}

.swal2-container
{
    z-index:2000 !important;
}

.hidden{
    display:none;
}

/*Notification related*/
.notification-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: 2px;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    background: #ffffff;
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.notification-list:hover {
    background: #fafafa;
}

.notification-list--unread {
    border-left: 2px solid #ffd600;
}

.notification-list--read {
    border-left: 2px solid green;
}

.notification-list .notification-list_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.notification-list .notification-list_content .notification-list_detail p {
        margin-bottom: 5px;
        line-height: 1.2;
    }


.notification-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.replies-container {
    width: 100%;
}

