* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* letter-spacing: 1px; */
    margin: 0;
    padding: 0;
    line-height: 1.7em;
  }
  :root {
    /* Main Colors */
    --text-color-blue: #0092D3;
    --text-color-green: #17B6AA;
    --text-color-red: #E53E3E;
    --text-color-black: #333333;
    --text-color-white: #ffffff;
    --text-color-platinum: #E8E8E8;
    --text-color-kashmir: #5C728F;
    --text-color-silver: #B3B3B3;
    --text-color-whisper: #E9E9E9;
    --text-color-licorice: #2D3748;
    --text-color-mischka: #A0AEC0;
    --text-color-balticSea: #343A40;

    --bg-color-white: #ffffff;
    --bg-color-green: #17B6AA;
    --bg-color-kashmir: #5C728F;
    --bg-color-solitude: #F1F3F9;
    --bg-color-aliceBlue: #F8F9FA;
    --bg-color-platinum: #E8E8E8;
    --bg-color-licorice: #2D3748;
    --bg-color-red: #E53E3E;
    --transition-delay: 0.3s;
    --radiuse-7: 7px;
    --radiuse-12: 12px;
    --padding-20: 20px;
    --padding-10: 10px;
    --main-shadow: 0px 0.5px 2px 0px #19213d1c;
    /* z-index */
    --z-index-10: 10;
    --z-index-20: 20;
    --z-index-30: 30;
    --z-index-40: 40;
    --z-index-50: 50;
  }

  ::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  }
  ::-webkit-scrollbar-track {
  background-color: white;
  }
  ::-webkit-scrollbar-thumb {
  background-color: #777877;
  border-radius: 10px;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    font-family: "Poppins", sans-serif;
    direction: rtl;
  }
.alert-danger {
color: red;
}
.alert-success{
    color: green;
    }
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  a {
    text-decoration: none;
  }
  input {
    transition: var(--transition-delay);
    caret-color: var(--text-color-kashmir) !important;
  }
  input::placeholder {
    transition: var(--transition-delay);
  }
  input:focus::placeholder {
    opacity: 0;
  }
  input:focus {
    background-color: var(--text-color-white) !important;
  }
  /* Hide spinner in Webkit browsers (Chrome, Safari, Edge) */
  input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
  }
  /* ========__--_Start Main Styles_--__--======== */
  main {
    width: 100%;
    background-color: var(--bg-color-aliceBlue);
  }
  /* Start Sidebare */
    .tables-wraper {
    min-width: 1600px;
  }
  .sidebare::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }

  .sidebare::-webkit-scrollbar-track {
    background-color: transparent;
  }

  .sidebare::-webkit-scrollbar-thumb {
    background-color: var(--bg-color-green);
    border-radius: 10px;
  }
  .sidebare {
    width: 226px;
    height: 100vh;
    background-color: var(--text-color-green);
    border: 4px solid var(--text-color-whisper);
    border-radius: var(--radiuse-12) 0 0 var(--radiuse-12);
    position: fixed;
    top: 0;
    right: 0;
    padding: 20px;
    padding-right: 0;
    overflow: hidden;
    transition: var(--transition-delay);
  }
  .sidebare > img {
    width: 100%;
  }
  .sidebare .sidebare--title {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px;
    margin: 20px 0px 40px 0px;
    background-color: var(--bg-color-white);
    border-radius: var(--radiuse-7) 0 0 var(--radiuse-7);
  }
  .sidebare .sidebare--title .sidebare--title-icon {
    background-color: var(--bg-color-green);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radiuse-7);
  }
  .sidebare .sidebare--title .sidebare--title-icon i {
    color: var(--text-color-white);
    font-size: 19px;
  }
  .sidebare .sidebare--title h2 {
    color: var(--text-color-green);
  }
  .sidebare > ul li {

    margin-bottom: 20px;
  }
  .sidebare > ul li a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px;
    border-radius: var(--radiuse-7) 0 0 var(--radiuse-7);
    transition: var(--transition-delay);
  }
  .sidebare > ul li .sidebare--ul-icon {
    background-color: var(--bg-color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radiuse-7);

  }
  .sidebare > ul li .sidebare--ul-icon i {
    color: var(--text-color-green);
    font-size: 19px;
  }
  .sidebare > ul li h3 {
    color: var(--text-color-white);
    font-weight: 600;
  }

  /* Start sidebare li hover effect */

  .sidebare > ul li a:hover {
    background-color: var(--bg-color-white);
  }
  .sidebare > ul li a:hover h3 {
    color: var(--text-color-green);
  }

  .sidebare > ul li a:hover .sidebare--ul-icon {
    background-color: var(--text-color-green);
  }

  .sidebare > ul li a:hover .sidebare--ul-icon i {
    color: var(--text-color-white);
  }
    .sidebare > ul .active-side-li-hover a:hover {
    background-color: var(--bg-color-white);
  }
  .sidebare > ul .active-side-li-hover a:hover h3 {
    color: var(--text-color-green);
  }

  .sidebare > ul .active-side-li-hover a:hover .sidebare--ul-icon {
    background-color: var(--text-color-green);
  }

  .sidebare > ul .active-side-li-hover a:hover .sidebare--ul-icon i {
    color: var(--text-color-white);
  }
  /* End sidebare li hover effect */

  /* Start sidebare media query */
  @media (max-width: 1600px) {
    .sidebare .sidebare--title {
      margin: 20px 0px 30px 0px;
    }
    .sidebare > ul li {
      margin-bottom: 0px;
    }
  }
  @media (max-width: 991px) {
    .sidebare {
      width: 100px;
      padding: 10px;
      text-align: center;
    }
    .sidebare .sidebare--title,
    .sidebare > ul li a {
      margin-left: 0;
      gap: 0;
      justify-content: center;
      border-radius: var(--radiuse-7);
    }
    .sidebare .sidebare--title h2,
    .sidebare > ul li h3 {
      display: none;
    }
  }
  /* End sidebare media query */

  /* End sidebare */

  /* Start Content */
  .content {
    width: calc(100% - 226px);
    height: 100vh;
    margin-right: auto;
    padding: 20px;
  }
  @media (max-width: 991px) {
    .content {
      width: calc(100% - 100px);
      padding: 10px;
    }
  }
  /* End Content */
  /* ========__--_End Main Styles_--__--======== */




  /* Start Actions*/
  .p-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  /* End Actions*/

  /* ========__--_Start COMPONENTS Styles_--__--======== */
  /* POPUPS */
  .popup-body {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #33333366;
    display: none;
  }
  .popup {
    width: 400px;
    max-width: 100%;
    background-color: var(--bg-color-white);
    box-shadow: var(--main-shadow);
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: var(--z-index-50);
    padding: 50px 20px;
    border-radius: var(--radiuse-12);
  }
  .popup  .popup--img {
    width: 60px;
  }
  .popup .popup--text {
    color: var(--text-color-licorice);
    font-size: 19px;
    font-weight: bold;
    margin: 20px 0;
  }
  .popup .popup--btn {
    outline: none;
    background: none;
    border: none;
    color: var(--text-color-white);
    background-color: var(--bg-color-licorice);
    padding: 10px 35px;
    border-radius: var(--radiuse-7);
    cursor: pointer;
  }





  /* Pay Popups */

  .popup-body form {
    padding: 20px;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--bg-color-white);
    width: 500px;
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 50px 20px;
    border-radius: var(--radiuse-12);
  }
  .popup-body form h3 {
    color: var(--text-color-green);
    font-size: 22px;
  }
  .popup-body form .form-inpt label {
    color: var(--text-color-kashmir);
    font-size: 16px;
    font-weight: bold;
  }
  .popup-body form .form-inpt select {
    outline: none;
  }
  .popup-body form .form-inpt .main-inpt {
    width: 100%;
    padding: 15px 20px 15px 15px;
    margin-top: 10px;
    border: 1px solid var(--text-color-silver);
    border-radius: var(--radiuse-7);
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    color: var(--text-color-silver);
  }
  .popup-body form .form-inpt .main-inpt i {
    color: var(--text-color-green);
  }
  .popup-body form .form-inpt .main-inpt input {
    background: none;
    border: none;
    outline: none;
    caret-color: var(--text-color-silver);
    color: var(--text-color-black);
    flex: 1;
  }
  .popup-body input[type="submit"] {
    background-color: var(--text-color-green);
    font-size: 17px;
    color: var(--text-color-white);
    padding: 15px ;
    border: none;
    outline: none;
    border-radius: var(--radiuse-7);
    cursor: pointer;
  }

.popup-form {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.5); /* Black with opacity */
}

.form-content {
    background-color: #fff;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 30%; /* Could be more or less, depending on screen size */
    position: relative;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Close button */
.close-btn-drop-form {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.hide-dropdown {
    display: none;
}

  /* POPUPS */
  /* Main Card */
  .main-card {
    background-color: var(--bg-color-white);
    padding: var(--padding-20);
    box-shadow: var(--main-shadow);
    border-radius: var(--radiuse-12);
    position: relative;
  }
  /* Main Card */

  /* TEXT & HEADINGS */
  .content--main-heading h1 {
    color: var(--text-color-green);
    margin-bottom: 20px;
  }
  .content--main-heading > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  .content--main-heading > div img {
    width: 150px;
  }
  .content--main-heading > div a {
    display: block;
    /* width: 200px; */
    text-align: center;
    background-color: var(--bg-color-green);
    outline: none;
    border: none;
    color: var(--text-color-white);
    padding: 15px 25px;
    font-weight: bold;
    border-radius: var(--radiuse-7);
    cursor: pointer;
  }
  @media (max-width: 768px) {
    .content--main-heading h1 {
      text-align: center;
    }
    .content--main-heading > div {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    .content--main-heading > div img {
      display: none;
    }
    .content--main-heading > div a {
      width: 100%;
    }
  }
  /* TEXT & HEADINGS */

  /* TABLE */
  .table-layouts {
    width: 100%;
    min-width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    min-height: 20vh;
  }
  .tables-wraper {
    min-width: 1600px;
  }
  .table-layouts::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }

  .table-layouts::-webkit-scrollbar-track {
    background-color: transparent;
  }

  .table-layouts::-webkit-scrollbar-thumb {
    background-color: var(--bg-color-green);
    border-radius: 10px;
  }

  table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 20px 3px;
    direction: rtl;
  }

  /*th:first-child {*/
  /*  width: 22%;*/
  /*}*/

  /*th:nth-child(2) {*/
  /*  width: 18%;*/
  /*}*/

  /*th:nth-child(3) {*/
  /*  width: 18%;*/
  /*}*/

  /*th:nth-child(4) {*/
  /*  width: calc(42%/3);*/
  /*}*/

  /*th:nth-child(5) {*/
  /*  width: calc(42%/3);*/
  /*}*/
  /*th:last-child {*/
  /*  width: calc(42%/3);*/
  /*}*/

  .filter-table select,
  .filter-table input {
    text-align: right;
    width: 100%;
  }

  .filter-table table th:first-child
  .filter-table select,
  .filter-table input,
  .filter-table button {
    border: none;
    background: none;
    background-color: var(--bg-color-solitude);
    border: 1px solid var(--text-color-whisper);
    color: var(--text-color-balticSea);
    outline: none;
    caret-color: var(--text-color-balticSea);
    font-weight: 600;
    padding: 15px 12px;
    border-radius: 7px;
  }

  .teachers .filter-table table th:first-child {
    width: 50.88px;
  }
  .teachers .filter-table table th:first-child .icon {
    background-color: var(--bg-color-solitude);
    border: 1px solid var(--text-color-whisper);
    border-radius: var(--radiuse-7);
    color: var(--text-color-green);
    font-size: 19px;
    width: 100%;
    height: 50px;
  }
  .filter-table table th:first-child .icon {
    background-color: var(--bg-color-solitude);
    border: 1px solid var(--text-color-whisper);
    border-radius: var(--radiuse-7);
    width: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .filter-table table th:first-child .icon i {
    font-weight: 600;
    font-size: 22px;
    color: var(--text-color-green);
  }
  .filter-table table th:first-child .inpt {
    flex: 1;
  }
  .teachers .filter-table table th:nth-child(2) {
      width: 330px;
  }
  .teachers .filter-table table th:nth-child(3) {
      width: 145.2px;
  }
  .teachers .filter-table table th:nth-child(4) {
      width: 171.6px;
  }
  .teachers .filter-table table th:nth-child(5) {
      width: 145.2px;
  }
    .teachers .filter-table table th:nth-child(6) {
      width: 132.6px;
  }
    .teachers .filter-table table th:nth-child(7) {
      width: 105.6px;
  }
  
  
  .filter-table th {
    padding: 0;
  }
  .table-main-content {
    height: 74.5vh;
    overflow-y: scroll;
  }
  .teachers-table th,
  td {
    background-color: #fff !important;
    border: 1px solid var(--text-color-whisper);
    border-radius: 7px;
    padding: 10px 12px;
    text-align: right;
  }

  .teachers-table th {
    color: #404D61 !important;
    font-weight: 700;
    font-size: 19px;
  }

  .teachers-table td {
    color: var(--text-color-balticSea);
    font-size: 17px;
    font-weight: normal;
  }

  .teachers-table tr:hover td {
    background-color: #f1f1f1;
  }

  .teachers-table td:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .teachers-table td:last-child {
    text-align: center;
  }
  .teachers-table td:last-child > div {
    position: relative;
  }
  .teachers-table button {
    background-color: #C6CFDF;
    border: none;
    outline: none;
    padding: 10px 23px;

    color: var(--text-color-kashmir);
    cursor: pointer;
    border-radius: 5px;
  }

  /* .teachers-table button:hover {
    background-color: #b0c1df;
  } */
  
  
  .teachers .teacher-table th:first-child {
      width: 92px!important;
  }
  .controlers {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 50px 0;
  }
  .controlers .printTeachersTableBtn {
    position: absolute;
    right: 20px;
    width: 200px;
    background-color: var(--bg-color-licorice);
    outline: none;
    border: none;
    color: var(--text-color-white);
    padding: 15px 0;
    border-radius: var(--radiuse-7);
    cursor: pointer;
  }
  .controlers .pagination-controls {
    display: flex;
    align-content: center;
    gap: 20px;
    direction: ltr;
  }
  .controlers .paginationPrevBtn,
  .controlers .paginationNextBtn {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color-kashmir);
    cursor: pointer;
  }
  .controlers .page-num {
    color: var(--text-color-kashmir);
    font-size: 20px;
    /* margin: 0 10px; */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .controlers .page-current {
    color: var(--text-color-white);
    background-color: var(--bg-color-green);
  }
  /* Custom Dropdown */
  .filter-dropdown,
  .add-user-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
  }

  .dropdown-button,
  .add-user-dropdown-button {
    color: var(--text-color-green)!important;
    padding: 15px 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 7px;
    text-align: right;
    width: 100%;
  }

  .dropdown-content,
  .add-user-dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-color-aliceBlue);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    width: 100%;
    border-radius: var(--radiuse-7);
    transition: var(--transition-delay);
  }
  .dropdown-content a,
  .add-user-dropdown-content a {
    display: block;
    color: var(--text-color-kashmir);
    background-color: var(--bg-color-white);
    padding: 12px 16px;
    margin-bottom: 5px;
    text-align: right;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
  }
  .dropdown-content a:last-child,
  .add-user-dropdown-content a:last-child {
    margin-bottom: 0;
  }
  .dropdown-content a:hover,
  .add-user-dropdown-content a:hover {
    background-color: #ddd;
  }
  .add-user-dropdown .add-user-dropdown-content {
    display: none;
  }
  .filter-dropdown.show .dropdown-content,
  .add-user-dropdown.show .add-user-dropdown-content  {
    display: block;
  }
  /*hossam*/
/*  @media print {*/
/*    .no-print {*/
/*        display: none;*/
/*    }*/
/*}*/
  /* @media (max-width: 767px) {
    .controlers .printTeachersTableBtn {
      width: 100%;
    }
  } */

  /*  Add user form input & selcet */
  .add-user-form--container {
    width: 100%;
    background-color: var(--bg-color-white);
    box-shadow: var(--main-shadow);
    border-radius: var(--radiuse-12);
    padding: 50px 30px;
  }

  .add-user-form--container .upload-img-btn {
    display: none;
  }
  .add-user-form--container .upload-img-label {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 10px 0;
    border-radius: 12px;
    cursor: pointer;
    width: fit-content;
  }
  .add-user-form--container .upload-img-label .preview-img {
    max-width: 100%;
    max-height: 100%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #b3b9c1;
  }
  .add-user-form--container .upload-img-label > span {
    font-weight: bold;
    font-size: 18px;
    color: var(--text-color-kashmir);
  }
  .add-user-form--container .add-user-form-inpts {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  .add-user-form-inpts .main-inpt {
    border: 1px solid var(--text-color-whisper);
    padding: 10px 20px;
    border-radius: var(--radiuse-12);
  }
  .add-user-form-inpts .main-inpt label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0px;
  }
  .add-user-form-inpts .main-inpt label .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color-platinum);
    color: var(--text-color-green);
  }
  .add-user-form-inpts .main-inpt label h4 {
    color: var(--text-color-licorice);
  }
  .add-user-form-inpts .main-inpt > input,
  .add-user-form-inpts .main-inpt > span {

    color: var(--text-color-balticSea);
    outline: none;
    caret-color: var(--text-color-balticSea);
    font-weight: 600;
    padding: 15px 12px;
    width: calc(100% - 42px);
    margin-right: auto;
    display: block;
  }
  .add-user-form-inpts .main-inpt > input {
    border-radius: var(--radiuse-7);
    border: none;
    background: none;
  }
  .add-user-form-inpts .main-inpt > input::placeholder {
    color: var(--text-color-licorice);
    background: none;
  }
  .add-user-form-inpts .main-select .dropdown-button,
  .add-user-form-inpts .main-select .add-user-dropdown-button {
    color: var(--text-color-balticSea)!important;
    background-color: transparent!important;
    width: 100%!important;
    padding-right: 54px;
    margin-right: auto!important;
    display: block!important;
  }
  .add-user-form--container > button,
  .add-user-form--container .profile-btns button,
  .add-user-form--container .profile-btns a {
    display: block;
    width: 250px;
    text-align: center;
    background-color: var(--bg-color-green);
    outline: none;
    border: none;
    color: var(--text-color-white);
    padding: 15px 25px;
    font-weight: bold;
    border-radius: var(--radiuse-7);
    cursor: pointer;
    margin-top: 40px;
  }
  .add-user-form--container .profile-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  .add-user-form--container .profile-btns button:first-child {
    background-color: var(--bg-color-licorice);
  }
  .add-user-form--container .profile-btns a {
    background-color: var(--bg-color-green);
  }
  .add-user-form--container .profile-btns button:last-child {
    background-color: var(--bg-color-red);
  }
  @media (max-width: 768px) {
    .add-user-form--container {
      padding: 30px 10px;
    }
    .add-user-form--container .upload-img-label {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100%;
    }
    .add-user-form--container .add-user-form-inpts {
      grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    }
    .add-user-form--container > button {
      width: 100%;
    }
  }
  /*  Add user form input & selcet */

  /* ========__--_End COMPONENTS Styles_--__--======== */
  /* Start Login Page */
  .login {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100vh;
  }

  .login--right,
  .login--left {
    position: relative;
  }
  .right--info,
  .left--info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -74%);
  }

  .login--right {
    width: 40%;
  }
  .right--info {
    width: 70%;
  }
  .right--info h1 {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .right--info form {
    padding: 20px;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .right--info form .form-inpt label {
    color: var(--text-color-black);
    font-size: 17px;
    font-weight: bold;
  }
  .right--info form .form-inpt .main-inpt {
    width: 100%;
    padding: 15px 20px 15px 15px;
    margin-top: 10px;
    border: 1px solid var(--text-color-silver);
    border-radius: var(--radiuse-7);
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    color: var(--text-color-silver);
  }
  .right--info form .form-inpt .main-inpt i {
    color: var(--text-color-green);
  }
  .right--info form .form-inpt .main-inpt input {
    background: none;
    border: none;
    outline: none;
    caret-color: var(--text-color-silver);
    color: var(--text-color-black);
    flex: 1;
  }
  .right--info form input[type="submit"] {
    background-color: var(--text-color-green);
    font-size: 17px;
    color: var(--text-color-white);
    padding: 15px ;
    border: none;
    outline: none;
    border-radius: var(--radiuse-7);
    cursor: pointer;
  }

  .login--left {
    flex: 1;
    background-color: var(--text-color-green);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;

  }
  .left--info {
    text-align: center;
  }
  .left--info p {
    color: var(--text-color-white);
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
  }
  .login--left > img {
    position: absolute;
    left: 0;
    bottom: 0;
  }

  @media (max-width: 992px) {
    /* .login {
      flex-direction: column;
    } */
    .login--left {
      display: none;
    }
    .login--right {
      width: 100%;
    }
    .right--info h1 {
      text-align: center;
    }
  }
  @media (max-width: 768px) {
    .login--right {
      padding: 20px;
    }
    .right--info {
      width: 100%;
      transform: translate(-50%, -50%);
    }
    .right--info form {
      padding: 20px;
    }
  }
  /* End Login Page */

  /* Start Home Page */
  .home .content--main-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  .home .content--main-heading > div {
    margin-bottom: 0;
  }
  .home .content--main-heading > div a {
      background-color: var(--bg-color-red);
    }

    @media (max-width: 767px) {
        .home .content--main-heading {
            text-align: center;
        }
        .home .content--main-heading > div {
            margin: 0 auto;
            width: 90%;
        }
}

  .home--content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  .home--content-container-1 {
    width: 60%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
    gap: 40px;
  }
  .home--content-container-1 .box {
    padding: 40px;
    background-color: var(--bg-color-white);
    box-shadow: var(--main-shadow);
    border-radius: var(--radiuse-12);
  }
  .home--content-container-1 .box .text {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  .home--content-container-1 .box .icon {
    background-color: var(--bg-color-kashmir);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radiuse-7);
  }
  .home--content-container-1 .box .icon i {
    color: var(--text-color-white);
    font-size: 19px;
  }
  .home--content-container-1 .box h2 {
    color: var(--bg-color-kashmir);
  }
  .home--content-container-1 .box h2 span {
    color: var(--text-color-green);
  }
  .home--content-container-1 .box .stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .home--content-container-1 .box .stats div {
    width: 140px;
    height: 75px;
    padding: 10px;
    border-radius: var(--radiuse-7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .home--content-container-1 .box .stats div h2 {
    color: var(--text-color-white);
  }
  .home--content-container-1 .box .stats div:first-child {
    background-color: var(--bg-color-licorice);
  }
  .home--content-container-1 .box .stats div:last-child {
    background-color: var(--text-color-green);
  }
  .home--content-container-2 {
    width: calc(40% - 50px);
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .home--content-container-2 .box {
    padding: 20px;
    background-color: var(--bg-color-white);
    box-shadow: var(--main-shadow);
    border-radius: var(--radiuse-12);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .home--content-container-2 .box .info h2 {
    color: var(--text-color-kashmir);
  }
  .home--content-container-2 .box .stats {
    color: var(--text-color-licorice );
  }
  .home--content-container-2 .box .stats span {
    color: var(--text-color-green);
  }
  .home--content-container-2 .box .icon {
    background-color: var(--bg-color-green);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: var(--radiuse-7);
  }
  .home--content-container-2 .box .icon i {
    color: var(--text-color-white);
    font-size: 25px;
  }
  .home--content-container-3 {
    width: 55%;
    height: 460px;
    padding: 30px;
    background-color: var(--bg-color-white);
    box-shadow: var(--main-shadow);
    border-radius: var(--radiuse-12);
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  .home--content-container-3 .text {
    flex: 1;
  }
  .home--content-container-3 .text p {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-color-mischka);
  }
  .home--content-container-3 .text h2 {
    font-size: 32px;
    margin: 10px 0;
  }
  .home--content-container-3 .logo {
    background-color: var(--bg-color-green);
    width: 30%;
    height: 400px;
    padding: 40px;
    border-radius: var(--radiuse-12);
  }
  .home--content-container-3 .logo img {
    width: 100%;
    height: 100%;
  }
  .home--content-container-4 {
    width: calc(45% - 40px);
    height: 460px;
    padding: 30px;
    background-color: var(--bg-color-white);
    box-shadow: var(--main-shadow);
    border-radius: var(--radiuse-12);
    position: relative;
  }
  .home--content-container-4 .text {
    position: absolute;
    top: 50px;
    right: 50px;
    color: var(--text-color-white);
    z-index: var(--z-index-10);
    padding-left: 20px;

  }
  .home--content-container-4 .text h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .home--content-container-4 .text p {
    font-size: 18px;
    font-weight: bold;
  }
  .home--content-container-4 img {
    min-width: 100%;
    min-height: 100%;
    border-radius: var(--radiuse-12);
  }
  .home--content-container-4 .img {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: var(--radiuse-12);
  }
  .home--content-container-4 .img::after {
    content: '';
    background-color: #1111114d;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: var(--radiuse-12);
  }
  @media (max-width: 1600px) {
    .home--content-container-1 .box {
      padding: 20px !important;
  }
    .home--content-container-1 .box h2,
    .home--content-container-2 .box .info h2,
    .home--content-container-3 .text p {
      font-size: 16px;
    }
    .home--content-container-1 .box .stats div {
      width: 100px !important;
      height: 50px !important;
    }
    .home--content-container-1 .box .stats {
      justify-content: space-between !important;
    }
    .home--content-container-3 .text h2 {
      font-size: 25px;
    }
    .home--content-container-3 .logo {
      height: 100%;
      width: 40%;
    }
    .home--content-container-3,
    .home--content-container-4 {
      height: 300px;
    }
  }
  @media (max-width: 991px) {
    .home--content-container-1 {
      width: 100%;
    }
    .home--content-container-2 {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
    }
    .home--content-container-3, .home--content-container-4 {
      width: 100%;
    }
  }
  @media (max-width: 768px) {
    .home--content-container-3,
    .home--content-container-4 {
      padding: 10px;
      height: auto;
    }
    .home--content-container-3 {
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }
    .home--content-container-3 .text {
      text-align: center;
    }
    .home--content-container-3 .logo {
      width: 100%;
      height: 250px;
    }
  }
  /* End Home Page */
  /* Start Teachers Page */
  .teachers .content {
    padding-right: 0;
  }
  .teachers .content--main-heading {
    padding-right: 20px;
  }
  /* End Teachers Page */

  /* Start Add Teacher Page */
  .add-teacher .content--main-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
  }
  .add-teacher .content--main-heading > div {
    margin-bottom: 0;
  }
  .add-teacher .content--main-heading > div a {
    background-color: var(--bg-color-kashmir);
  }




  @media (max-width: 768px) {
    .add-teacher .content--main-heading {
      flex-direction: column;
    }
    .add-teacher .content--main-heading > div {
      width: 100%;
    }
  }
  /* End Add Teacher Page */

  /* Start Teacher Profile */
  .teacher-profile .content--main-heading > div {
    justify-content: space-between;

  }
  .teacher-profile .content--main-heading > div a {
    background-color: var(--bg-color-kashmir);
  }
  .teacher-profile .content--main-heading > div h2 {
    color: var(--text-color-green);
  }

  .teacher-profile .container--heading {
    color: var(--text-color-green);
    margin-bottom: 20px;
  }
  .teacher-profile .pay-container {
    margin-bottom: 40px;
  }
  .teacher-profile .pay-container .dropdown-container {
    width: auto;
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
  }
    .teacher-profile .pay-container .dropdown-container .dropdown-content-box > button {
            color: var(--bg-color-kashmir);
    }
        .teacher-profile .pay-container .dropdown-container .dropdown-content-box > button:hover {
            color: var(--bg-color-white);
    }
  .teacher-profile .pay--info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 20px;
    padding-left: 50px;
    position: relative;
  }
  .teacher-profile .pay--info .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .teacher-profile .pay--info .box i {
    color: var(--text-color-green);
    font-size: 22px;
  }
  .teacher-profile .pay--info .box h3 {
    color: var(--text-color-balticSea);
    margin: 5px 0 7px 0;
  }
  .teacher-profile .pay--info .box span {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-color-kashmir);
  }
  .dropdown-container {
    width: 100%;
    position: absolute;
    /* left: 40px; */
    /* top: 50%; */
    transform: translateY(-50%);
  }
  .dropdown-container > button {
    background: none;
    border: none;
    outline: none;
  }
  .dropdown-container .dropdown-content-box {
    position: absolute;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    width: 220px;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    z-index: var(--z-index-50);
    transition: var(--transition-delay);

  }
  .hide-dropdown {
    display: none!important;
  }
  /* .show-dropdown {
    display: flex!important;
  } */
  .dropdown-container .dropdown-content-box > button {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    color: var(--text-color-white);
    text-align: right;
    padding: var(--padding-10);
    padding-right: 15px;
    border-radius: var(--radiuse-7);
    transition: var(--transition-delay);
    margin-bottom: 10px;
  }
  .dropdown-container .dropdown-content-box > button a {
    color: var(--text-color-kashmir);
    transition: var(--transition-delay);
    display: block;
    width: 100%;
    height: 100%;

  }
  .dropdown-container .dropdown-content-box > button:hover {
    background-color: var(--bg-color-green);
  }
  .dropdown-container .dropdown-content-box > button:hover a {
    color: var(--text-color-white);
  }
  .teacher-profile .open-pay-option i {
    color: var(--text-color-green);
    font-size: 22px;
    cursor: pointer;
  }

  .profile-inof-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10%;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  .profile-inof-toggle button {
    background: none;
    border: none;
    outline: none;
    font-size: 19px;
    font-weight: bold;
    color: var(--text-color-silver);
    width: 250px;
    padding: 10px 20px;
    border-radius: var(--radiuse-7);
    max-width: 100%;
    cursor: pointer;
  }
  .profile-inof-toggle .active {
    background-color: #17b6aa33;
    color: var(--text-color-green);
  }
  .teacher-profile .t-p-info {
  }
  .teacher-profile .t-sallery-history {
    display: none;
    overflow: scroll;
    height: 60vh;
    max-height: 60vh;
  }

  .teacher-profile .t-sallery-history::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }

  .teacher-profile .t-sallery-history::-webkit-scrollbar-track {
    background-color: transparent;
  }

  .teacher-profile .t-sallery-history::-webkit-scrollbar-thumb {
    background-color: var(--bg-color-green);
    border-radius: 10px;
  }

  .teacher-profile .t-sallery-history .table-main-content {
    width: 100%;
    min-width: 1150px;
    height: auto;
  }
  .teacher-profile .t-sallery-history .table-main-content table {
    width: 100%;
  }
  .teacher-profile .t-sallery-history .table-main-content table tr {
    font-size: 18px;
  }
  .teacher-profile .t-sallery-history .table-main-content th {
    width: calc(100% / 7);
    background-color: var(--bg-color-solitude);
  }
  .teacher-profile .t-sallery-history .table-main-content td:has(button) {
    padding: 0;
  }
  .teacher-profile .t-sallery-history .table-main-content td button {
    width: 100%;
    height: 47px;
    background-color: var(--bg-color-licorice);
    color: var(--text-color-white);
  }
  .teacher-profile .t-sallery-history:has(.add-s-tax-action) .table-main-content th {
    width: auto;
  }
  .teacher-profile .t-sallery-history .table-main-content th,
  .teacher-profile .t-sallery-history .table-main-content td {
    font-size: 18px;
  }
  .teacher-profile .t-sallery-history .table-main-content td:last-child label {
    display: flex;
    align-items: center;
    justify-content: space-around;
    cursor: pointer;
  }
  .teacher-profile .t-sallery-history .table-main-content td:last-child label input {
    width: 20px;
    height: 20px;
    accent-color: var(--text-color-green);
    cursor: pointer;
  }
  .teacher-profile .add-s-tax-action .main-inpt input {
    margin-right: 0;
  }
  .teacher-profile .t-sallery-history .content--main-heading {
    margin-top: 80px;
  }

  .add-s-tax-action {
    width: 100%;
  }


  .add-s-tax-action form label {
    color: #5C728F;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
  }
  .add-s-tax-action form .inpts-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
  .add-s-tax-action form .inpts-container .form-inpt {
    /* width: 32%; */
  }
  .add-s-tax-action form input[type="submit"] {
    width: 100%;
    margin-top: 20px;
    border: none;
    background: none;
    outline: none;
    padding: 15px 20px;
    font-weight: bold;
    color: var(--text-color-white);
    background-color: var(--bg-color-green);
    border-radius: var(--radiuse-7);
    cursor: pointer;
  }
  /* .add-s-tax-action form .form-inpt .add-user-dropdown {
    margin-top: 10px;
  } */
  .add-s-tax-action form .form-inpt .add-user-dropdown-button {
    background: none;
  }
  .teacher-profile .controlers {
    display: none;
  }
  /*.main-inpt:has(input) {*/
  /*    padding: 0!important;*/
  /*}*/
  /*.main-inpt > input {*/
  /*  cursor: text;*/
  /*  padding: 28px 20px!important;*/
  /*  width: 100%!important;*/
  /*}*/
  @media (max-width: 768px) {
    .teacher-profile .pay--info {
      padding: 20px;
    }
    .dropdown-container {
      left: 5px;
      top: 5px;
      transform: translateY(0);
    }
    .profile-inof-toggle {
      gap: 30px;
    }
    .profile-inof-toggle button,
    .add-user-form--container .profile-btns button {
      width: 100%;
    }
  }
  /* End Teacher Profile */

  /* Start Student Profile */
  .student-profile .t-sallery-history .table-main-content th {
    width: calc(100% / 5);
    background-color: var(--bg-color-solitude);
  }
  .student-profile .t-sallery-history .table-main-content tbody td:nth-child(2) {
    color: var(--text-color-red);
  }
  .student-profile .t-sallery-history .table-main-content tbody td:nth-child(3) {
    color: var(--text-color-green);
  }
  /* End Student Profile */

  /* Start Add Student */

  .add-student .content--main-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
  }
  .add-student .content--main-heading > div {
    margin-bottom: 0;
  }
  .add-student .content--main-heading > div a {
    background-color: var(--bg-color-kashmir);
  }
  /* End Add Student */

  /* Start Students List */
  .students .content {
    padding: 0;
  }
  .students .content--main-heading {
    padding-right: 20px;
    padding-left: 20px;

  }
  .students .tables-wraper {
    min-width: 1500px;
  }
  .students .students--table th {
      background-color: var(--bg-color-solitude)!important;
  }
  .students .students--table th,
  .students .students--table td:not(:nth-child(2)) {
    text-align: center;
  }
  .students .students--table th:first-child {
    width: 45px;
  }
  .students .students--table th:nth-child(2) {
    width: 25%;
  }
  .students .teachers-table td:nth-child(2) > div {
      display: flex;
      align-items: center;
      gap: 10px;
  }
  .students .teachers-table td:nth-child(2) img {
    width: 29px;
    height: 29px;
    border-radius: 50%;
  }
  .students .students--table th:nth-child(3) {
    width: 11%;
  }
  .students .students--table th:nth-child(4) {
    width: 13%;
  }
  .students .students--table th:nth-child(5) {
    width: 11%;
  }
  .students .students--table th:nth-child(6) {
    width: 10%;
  }
  .students .students--table th:nth-child(7) {
    width: 8%;
  }
  .students .students--table th:nth-child(8) {
    width: 15%;
  }
  .students .students--table th:nth-child(9) {
    width: 3%;
    color: var(--text-color-green);
    border: 1px solid var(--bg-color-platinum);
    border-radius: var(--radiuse-7);
    background-color: var(--bg-color-solitude);
  }
  .students .students--table td:nth-child(9) .dropdown-container {
    width: 100%!important;
    position: absolute!important;
    left: 50%!important;
    top: 50%!important;
    transform: translate(80%, -50%)!important;
  }
  .students .filter-table th:first-child .icon {
    background-color: var(--bg-color-solitude);
    border: 1px solid var(--text-color-whisper);
    border-radius: var(--radiuse-7);
    color: var(--text-color-green);
    font-size: 19px;
    width: 100%;
    height: 50px;

  }
  .students .students--table th:first-child .icon {
    color: var(--text-color-green);
    font-size: 19px;
    text-align: center;
  }
  .students .filter-table th input {
    width: 100%;
  }
  .students .teachers-table td:first-child {
    text-align: center;
    display: block;
  }
  .students .teachers-table td:nth-child(2) {
    position: relative;
  }
  /* .students .teachers-table a {
    display: block;
    background-color: #C6CFDF;
    padding: 0px 10px;
    color: var(--text-color-kashmir);
    cursor: pointer;
    border-radius: 5px;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
  } */
  .students .teachers-table td:has(.valid-student),
  .students .teachers-table td:has(.invalid-student),
  .students .teachers-table td:has(.active-student),
  .students .teachers-table td:has(.inactive-student) {
    padding: 0;
  }
  .students .teachers-table td .valid-student,
  .students .teachers-table td .valid-student,
  .students .teachers-table td .active-student,
  .students .teachers-table td .inactive-student {
    width: 100%;
    color: var(--text-color-white);
    text-align: center;
    border-radius: var(--radiuse-7);
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .students .teachers-table td .valid-student {
    background-color: var(--bg-color-kashmir);
  }
  .students .teachers-table td .invalid-student {
    background-color: #A2AFC7;
  }
  .students .teachers-table td .active-student {
    background-color: var(--bg-color-green);
  }
  .students .teachers-table td .inactive-student {
    background-color: var(--bg-color-red);
  }
  /* End Students List */


  /* Start In-Outcom */
  .inoutcome .profile-inof-toggle {
    margin: 40px 0;
  }
  .inoutcome .main-card {
    margin-bottom: 10px;
    padding: 40px 30px;
  }
  .inoutcome .main-card h4 {
    color: var(--bg-color-kashmir);
    font-weight: bold;
  }
  .inoutcome .main-card h4 span {
    color: var(--text-color-green);
    margin-right: 5px;
  }
  .inoutcome .content--main-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .inoutcome .content--main-heading h2 {
    color: var(--text-color-green);
  }
  .inoutcome .content--main-heading button {
    display: block;
    /* width: 200px; */
    text-align: center;
    background-color: var(--bg-color-kashmir);
    outline: none;
    border: none;
    color: var(--text-color-white);
    padding: 15px 25px;
    font-weight: bold;
    border-radius: var(--radiuse-7);
    cursor: pointer;
  }
  .inoutcome main {
    background-color: var(--bg-color-white);
  }
  .inoutcome .tables-wraper{
    width: 1100px;
    min-width: 1100px;
  }
  .inoutcome table th {
    width: calc(100% / 3);
  }
  .inoutcome .income-table tr td:last-child {
    color: var(--text-color-green);
  }
  .inoutcome .income-table tr td {
    font-weight: bold;
  }
  .inoutcome .t-sallery-history {
    height: auto;
  }
  .inoutcome .table-main-content {
    min-width: 100% !important;
  }
  .inoutcome .t-sallery-history::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }
  .student-profile .t-sallery-history .table-main-content tbody td:nth-child(2) {
    color: var(--text-color-balticSea);
  }
  .inoutcome .outcome-table tr td:last-child {
    color: var(--text-color-red) !important;
  }
  .inoutcome .outcome-table tr td:last-child {
    font-weight: bold;
  }
  @media (max-width: 768px) {
    .inoutcome .t-p-info .main-card h4 {
      text-align: center;
    }
  }
  /* End In-Outcom */
  /* Start Quezes */
  .quzes .content--main-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0 20px;

  }
  .quzes .content--main-heading:first-child {
    margin-bottom: 20px;
  }
  .quzes .content--main-heading h2 {
    color: var(--text-color-green);
  }
  .quzes .content--main-heading > div {
    margin: 0;
  }
  .quzes .content--main-heading div a {
    background-color: var(--bg-color-kashmir);
  }
  .quzes .content--main-heading button {
    border: none;
    background: none;
    background-color: var(--bg-color-green);
    color: var(--text-color-white);
    padding: 10px 30px;
    border-radius: var(--radiuse-7);
    font-weight: bold;
    cursor: pointer;
  }
  .quzes .quzes-list {
    overflow-x: scroll;
  }
  .quzes .quzes-list .table-main-content {
    height: 79vh;
    width: 100%;
    min-width: 1150px;
  }
  .quzes .quzes-list .table-main-content::-webkit-scrollbar,
  .quzes .quzes-list::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }

  .quzes .quzes-list .table-main-content::-webkit-scrollbar,
  .quzes .quzes-list::-webkit-scrollbar  {
    background-color: transparent;
  }

  .quzes .quzes-list .table-main-content::-webkit-scrollbar,
  .quzes .quzes-list::-webkit-scrollbar  {
    background-color: var(--bg-color-green);
    border-radius: 10px;
  }
  .quzes .quzes-list table th {
    width: calc(100% / 7);
    background-color: var(--bg-color-solitude);
    border: 1px solid var(--text-color-whisper);
    color: var(--text-color-licorice);
    border-radius: 7px;
    padding: 10px 12px;
    text-align: right;
    font-weight: bold;
    font-size: 17px;
  }
  .quzes .quzes-list table tr td:has(a) {
    background-color: #C6CFDF;
    text-align: center;
  }
  .quzes .quzes-list table tr td a {
    color: var(--text-color-kashmir);
    font-weight: bold;
    display: block;
    height: 100%;
  }

  /* End Quezes */
  /* Start Quezes Info */
  .quzes-info .quzes-list .table-main-content {
    height: 84vh;
  }
  .quzes-info .quzes-list table th:first-child {
    width: 30%;
  }
  .quzes-info .quzes-list table th {
    width: calc(70% / 4);
  }
  /* End Quezes Info */
  /* Start Accessabality List */
  .access-list {

  }
  .access-list .content--main-heading button i {
    margin-left: 10px;
    display: inline-block;
  }
  .access-list .quzes-list table th:not(:last-child) {
    width: calc(85% / 3);
  }
  .access-list .quzes-list table th {
    background-color: var(--bg-color-licorice);
    border: 1px solid var(--text-color-whisper);
    color: var(--text-color-white);
  }
  .access-list .quzes-list table tr td {
    font-weight: bold;
  }
  .access-list .quzes-list table th:last-child {
    width: 15%;
    position: relative;
  }
  .access-list .quzes-list table tr td:nth-child(2) {
    background-color: var(--bg-color-green);
    color: var(--text-color-white);
  }
  .access-list .quzes-list table tr td:last-child {
    background-color: var(--bg-color-white);
  }
  .access-list .quzes-list table tr td:last-child i {
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
  }
  .access-list .dropdown-container {
    width: auto;
    position: relative;
    left: auto;
    top: auto;
    transform: none;

  }
  .access-list .dropdown-container > button {
    padding: 0;
    background-color: transparent;
  }
  .access-list .dropdown-container > button:hover {
    background-color: transparent;
  }
  .access-list .dropdown-container .dropdown-content-box {
    width: 200px;
    left: -15px;
  }
  .access-list .dropdown-container .dropdown-content-box a {
    width: 100%;
    font-weight: bold;
    color: var(--text-color-kashmir);
    text-align: right;
    padding: var(--padding-10);
    padding-right: 15px;
    border-radius: var(--radiuse-7);
    transition: var(--transition-delay);
  }
  .access-list .dropdown-container .dropdown-content-box a:hover,
  .access-list .dropdown-container .dropdown-content-box a:hover i {
    background-color: var(--bg-color-green);
    color: var(--text-color-white);
  }
  .access-list .dropdown-container .dropdown-content-box a i {
    color: var(--text-color-green);
    transition: var(--transition-delay);
    margin-left: 10px;
    display: inline-block;
  }
  /* End Accessabality List */
  /* Start Classes */
  .classes .content--main-heading img {
    width: 150px;
  }
  .classes  .quzes-list table th {
    width: calc(100% / 3);
  }
  /* End Classes */
  /* popup */

  .msg-popup-body .confirm-popupdone {
    width: 400px;
    max-width: 100%;
    background-color: var(--bg-color-white);
    box-shadow: var(--main-shadow);
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: var(--z-index-50);
    padding: 50px 20px;
    border-radius: var(--radiuse-12);
  }
  .msg-popup-body {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #33333366;
  }

  .msg-popup-body .popup  .popup--img {
    width: 60px;
  }
  .msg-popup-body .popup .popup--text {
    color: var(--text-color-licorice);
    font-size: 19px;
    font-weight: bold;
    margin: 20px 0;
  }
  .msg-popup-body .popup .popup--btn {
    outline: none;
    background: none;
    border: none;
    color: var(--text-color-white);
    background-color: var(--bg-color-kashmir);
    padding: 10px 35px;
    border-radius: var(--radiuse-7);
    cursor: pointer;
  }
  .msg-popup-body .popup .cancel-action {
    background-color: var(--bg-color-licorice);
  }
.delet-any:hover  {
    background-color: var(--bg-color-red) !important;
}
.delet-any:hover a {
    color: var(--text-color-white);
}
.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    text-align: center;
    color: var(--text-color-green)!important;
    font-size: 20px!important;
    font-weight: bold!important;
    letter-spacing: 1px!important;
    margin-bottom: 30px;
}
.alert-danger {
    background-color: #fdcfcd;
    border-color: #f8b6b4;
    text-align: center;
    color: var(--text-color-red)!important;
    font-size: 20px!important;
    font-weight: bold!important;
    letter-spacing: 1px!important;
    margin-bottom: 30px;
}



    /* Modal Content */
    .modal-content {
        background-color: #fefefe;
        margin: auto;
        padding: 20px;
        width: 500px;
        max-width: 100%;
        border-radius: var(--radiuse-12);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        position: relative;
    }
    .modal-header {
        position: absolute;
        top: 0px;
        right: 10px;
    }
    /* The Close Button */
    .close {
        color: var(--bg-color-licorice);
        font-size: 30px;
        font-weight: normal;
    }

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

    .modal-body h2 {
        margin-top: 40px;
        color: var(--bg-color-licorice);
    }
    /* Footer buttons */
    .modal-footer button {
        font-weight: bold;
        border-radius: var(--radiuse-7);
        padding: 10px 20px;
        font-size: 19px;
    }
    /* ////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
    .g-popup {
        display: none; /* Hidden by default */
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
        z-index: 1000; /* Ensures popup is above other content */
    }

    .popup-content {
        background-color: white;
        margin: 15% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 50%; /* Adjust the width as needed */
        border-radius: 8px;
        position: relative;
    }
    .close-button {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
    }

    .close-button:hover,
    .close-button:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
    .g-popup .add-s-tax-action {
        position: absolute;
        width: 70%;
        max-width: 100%;
        margin: 20px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .g-popup .add-s-tax-action form label {
        text-align: right;
    }
    .g-popup button {
        border: none;
        background: none;
        background-color: var(--bg-color-green);
        color: var(--text-color-white);
        padding: 10px 30px;
        border-radius: var(--radiuse-7);
        font-weight: bold;
        cursor: pointer;
        }
        
        .btn-danger {
            background-color: var(--bg-color-red)!important;
            color: var(--text-color-white)!important;
        }
        .modal-dialog {
            width: 100%;
        }

  .teachers .filter-table table th {
    background-color: none !important;
  }