








/* Google Fonts */
.poppins-thin {
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto {
  font-family: 'Roboto', sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: 'wdth' 100;
}

.montserrat-medium {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 0.75rem;
}

.montserrat-regular {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 0.75rem;
}
/* _____________________GOOGLE FONTS END____________________ */

* {
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 1vw;
}

a {
  text-decoration: none;
}
.base-nav {
  width: 100%;
  height: 5rem;
  background-color: #0c1e33;
  display: flex;
  justify-content: space-between;
  padding: 1.25rem;
  align-items: center;
}

.base-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.base-main {
  min-height: 60vh;
  height: auto;
  width: 100%;
}

.base-user-name {
  color: white;
}
.base-nav-user-info {
  display: flex;
  gap: 1rem;
  height: 2rem;
  align-items: center;
}

.base-side-bar-button-container {
  height: 2rem;
  aspect-ratio: 1/1;
  display: flex;
  gap: 1rem;
  /* background-color: aliceblue; */
}
.base-side-bar-button-container svg{
  height: 100%;
  cursor: pointer;
}
.base-user-image-container {
  background-color: rgb(77, 77, 132);
  height: 100%;
  border-radius: 10rem;
  aspect-ratio: 1/1;
}

.slide-in-animation {
  animation-name: slide-in;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.slide-out-animation {
  animation-name: slide-in;
  animation-duration: 1s;
  animation-fill-mode: backwards;
}

.base-side-bar {
  width: 13rem;
  height: 90%;
  top: 5rem;
  background-color: #0c1e33;
  position: absolute;
  transform: translate(-13rem);
  transition: all 1s;
}

.side-bar-hide-container {
  height: 4rem;
  border-bottom: 2px solid white;
  border-top: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: right;
  width: 100%;
  font-size: 0.75rem;
}

.side-bar-element-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 1rem 0.5rem;
  gap: 0.5rem;
  border-bottom: 2px solid white;
  flex-direction: column;
}

.side-bar-element-container p {
  color: white;
  width: 100%;
  text-align: left;
  font-size: 0.8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.side-bar-element-container button {
  height: 2rem;
  font-size: 0.75rem;
}

.side-bar-element-container button img,
.side-bar-hide-container button img {
  width: 1rem;
  aspect-ratio: 1/1;
}

.base-side-bar-button-container img {
  width: 2rem;
  aspect-ratio: 1/1;
}

.active-bar-option {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.212),
    transparent 70.71%
  );
  border-left: 5px solid white !important;
  padding: 0.3rem;
}
.side-bar-hide-container button,
.side-bar-element-container button {
  height: 80%;
  font-size: 0.75rem;
  background-color: transparent;
  width: 90%;
  color: white;
  border: none;
  border-radius: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 0.25rem;
  cursor: pointer;
  transition: all 0.5s;
}

.side-bar-hide-container button:hover,
.side-bar-element-container button:hover {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.212),
    transparent 70.71%
  );
  border-left: 5px solid white !important;
  padding: 0.3rem;
}

/* Dashboard Styling */

.dashboard-get-started-section {
  display: flex;
  margin: 3rem;
  flex-direction: column;
  gap: 1rem;
  width: 90%;
  margin: 2rem auto;
}

.dashboard-get-started-section > p {
  font-size: 1.6rem;
}

.dashboard-get-started-boxes {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
}

.dashboard-get-started-box {
  background-color: #f4f6f7;
  border-radius: 0.3rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 17rem;
  height: 15rem;
  gap: 1rem;
  text-align: center;
  box-shadow: 6px 4px 11.9px rgba(0, 0, 0, 0.32);
  transition: all 0.5s;
  cursor: pointer;
}

.dashboard-get-started-box:hover {
  box-shadow: 6px 4px 11px #0341ad22;
}
.dashboard-get-started-box .box-description {
  font-size: 0.8rem;
}

.dashboard-get-started-box .image-container {
  aspect-ratio: 1/1;
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
}

.dashboard-get-started-box .image-container img {
  aspect-ratio: 1/1;
  width: 50%;
}

.magenta-background {
  background-color: #e1d2ff;
}
.cyan-background {
  background-color: #bae5f5;
}

.yellow-background {
  background-color: #fde1ac;
}

.lemon-green-background {
  background-color: #ccefbf;
}

/* Registration Page */
.reg-registration-section-header {
  height: 2.7rem;
  padding-bottom: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 1rem;
  font-size: 1.5rem;
  border-bottom: 1px solid lightgrey;
}
.reg-registration-table-remove-button,
.reg-registration-table-add-button {
  color: #0c1e33;
  border: none;
  border-radius: 2px;
  padding: 0.25rem 1rem;
  transition: all 0.2s;
  cursor: pointer;
}
.reg-registration-table-add-button {
  background-color: #bae5f5;
}
.reg-registration-table-add-button:hover {
  background-color: #5d7b86;
}

.enrolle-courses-page {
  width: 80%;
  margin: 0 auto;
}
.reg-registration-table-remove-button,
.reg-registration-table-add-button,
.reg-registration-table-conflict-button {
  color: #0c1e33;
  border: none;
  border-radius: 2px;
  padding: 0.25rem 1rem;

  transition: all 0.2s;
  cursor: pointer;
}
.reg-registration-table-add-button {
  background-color: #bae5f5;
}
.reg-registration-table-add-button:hover {
  background-color: #5d7b86;
}

.reg-registration-table-remove-button {
  background-color: #ccefbf;
}

.reg-registration-table-conflict-button {
  background-color: #e1d2ff;
}
.reg-registration-table-conflict-button:hover {
  background-color: #8b7da6;
}
.reg-registration-table-conflict-button:active {
  background-color: #4b435c;
}

.reg-registration-table-remove-button:hover {
  background-color: #87a67b;
}
.reg-registration-section {
  width: 80%;
  margin: 2.5rem auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.reg-registration-section-header img {
  height: 100%;
}

.reg-registration-table,
.plan-courses-table {
  width: 100%;
  border-collapse: collapse;
}

.reg-registration-table td,
.reg-registration-table th,
.plan-courses-table td,
.plan-courses-table th {
  padding: 15px 5px;
  display: table-cell;
  text-align: left;
  vertical-align: middle;
}

.reg-registration-table tr,
.plan-courses-table tr {
  border-bottom: solid rgba(0, 0, 0, 0.12) 1px;
}

.reg-registration-table tr:nth-of-type(even),
.plan-courses-table tr:nth-of-type(even) {
  background-color: #f4f6f7;
}
.reg-registration-table:nth-of-type(1)
  tr:last-of-type
  .plan-courses-table:nth-of-type(1)
  tr:last-of-type {
  background-color: #f4f6f7;
}

.reg-registration-table,
.plan-courses-table {
  text-align: left;
}

body.home-page {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5vh;
}

body.home-page p {
  font-size: 3vh;
}

body.home-page h1 {
  font-size: 8vh;
}

.reg-registration-filters {
  display: flex;
  justify-content: space-between;
  height: 2.5rem;
  margin: 1rem 0;
}

/* Filters height */
.reg-registration-search,
#department-filter-select,
#code-filter-select {
  height: 2rem;
  padding: 0.5rem 0.5rem;
  border: none;
}

#department-filter-select,
#code-filter-select {
  display: block;
  text-align: center;
  font-size: 1rem;
  height: auto;
  width: 15rem;
  border-radius: 10rem;
  background-color: #f4f6f7;
  cursor: pointer;
}

#department-filter-select option,
#code-filter-select option {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100rem;
}

.reg-registration-search {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4f6f7;
  padding: 0.25rem 0.5rem;
  height: 100%;
  border-radius: 10rem;
}
.reg-registration-search img {
  height: 75%;
  cursor: pointer;
  transition: all 0.2s;
}

.reg-registration-search input {
  border: none;
  background-color: transparent;
}

.reg-registration-search input:focus {
  outline: none;
}

.reg-registration-search img:hover {
  filter: invert(50%);
}

.reg-registration-search img:active {
  filter: invert(100%);
}

#reg-registration-search {
  height: 100%;
  border-bottom: none;
}

#reg-registration-search:focus {
  box-shadow: none;
}

.reg-registration-filter {
  display: flex;
  width: 30%;
  align-items: center;
  gap: 0.5rem;
}

body.home-page p {
  font-size: 3vh;
}

body.home-page h1 {
  font-size: 8vh;
}

.button-logins {
  display: flex;
  justify-content: center;
  gap: 5vw;
  flex-wrap: wrap;
}

.button-logins button {

  margin: 10px;
  padding: 10px;
  border: none;
  border-radius: 10px;
  font-weight: 800;

  font-size: 1rem;
  cursor: pointer;
   padding: 10px 20px;
    font-size: 16px;
    border: 2px solid #0C1E33;
    border-radius: 5px;
    cursor: pointer;
    background-color: transparent;
    color: #0C1E33;
}
/* 
.button-logins button:hover {
  background-color: #1859c0;
} */

.login-container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 60vw;
  max-width: 70vw;
  height: 50vh;

  gap: 10px;

  margin: 80px auto;
  width: 70%;
  height: 100%;
  border-radius: 25px;

  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

  background: linear-gradient(to right,#0C1E33 50%, #ffffff 10%);
}
.login-left svg {
  height: 100%;
  height: auto;
}

.login-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 50%;
  height: 100%;
  font-size: 1.5rem;
  font-weight: bold;
}

.login-right {
  padding: 40px;
  width: 50%;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: 'wdth' 100;
  display: flex;
  flex-direction: column;
}

.login-right h1 {
  margin-bottom: 20px;
}

.login-right input[type="number"], 
.login-right input[type="password"],
.login-right input[type="text"] {
  width: 100%;
  padding: 15px;
  height: 2rem;
}

.unregisteredSections-navigations {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
  
}

.unregisteredSections-navigations div {
  display: flex;
  margin: 0 auto;
  gap: 1rem;
  text-align: center;
}

.unregisteredSections-navigations a,
.unregisteredSections-navigations strong {
  color: #0c1e33;
  border: none;
  border-radius: 2px;
  padding: 0.25rem 1rem;
  transition: all 0.2s;
  background-color: #e1d2ff;
  cursor: pointer;
}
.unregisteredSections-navigations strong {
  background-color: #ccefbf;
  box-shadow: #d1ddcc 2px 2px 2px;
  font-weight: bolder;
}

.unregisteredSections-navigations a:hover {
  background-color: #8e83a4;
}

.unregisteredSections-navigations a:active {
  background-color: #4e455f;
}

.plan-section {
  width: 80%;
  margin: 2.5rem auto;
}
.plan-plans .reg-calender {
  width: 65%;
  margin: 0;
}

.plan-section .reg-registration-section-header {
  margin-bottom: 2.5rem;
}
.plan-plans {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start;
}

.plan-section-combinations {
  flex-wrap: wrap;
  flex-direction: column;
  width: 80%;

  

}

.plan-plans-combinations {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  height: auto;
  gap: 3rem;
}

.plan-plans-combination {
  width: 30%;
  height: auto;
}

.plan-plans-combination .reg-calender {
  width: 100%;
  margin: 0;
}

.plan-combination-sections {
  width: 100%;
  margin-top: 0.5rem;
}

.plan-combination-section {
  display: flex;
  width: 100%;
  justify-content: space-between;
  height: 1rem;
  flex-wrap: nowrap;
}

.plan-combination-section-course {
  display: flex;
  gap: 5px;
}

.plan-combination-section-course-color {
  height: 100%;
  aspect-ratio: 1/1;
  background-color: #0c1e33;
}

.plan-combination-section-course-purple {
  height: 100%;
  aspect-ratio: 1/1;
  background-color: #E1D2FF;
}
.plan-combination-section-course-green {
  height: 100%;
  aspect-ratio: 1/1;
  background-color: #CCEFBF;
}
.plan-combination-section-course-blue {
  height: 100%;
  aspect-ratio: 1/1;
  background-color: #BAE5F5;
}
.plan-combination-section-course-yellow {
  height: 100%;
  aspect-ratio: 1/1;
  background-color: #FDE1AC;
}

.plan-count {
  font-size: 3rem;
}

.plan-plan-control > div:nth-of-type(1) {
  display: flex;
  gap: 1rem;
}
.plan-plan-control > div:nth-of-type(1) {
  height: 1.5rem;
  margin-bottom: 1rem;
}
.plan-plan-control > div:nth-of-type(1) select {
  background-color: #f4f6f7;
  width: 7rem;
  border: none;
  text-align: center;
  font-size: 0.9rem;
  border-radius: 10rem;
  padding: 0.1rem 0.25rem;
  cursor: pointer;
}

.plan-plan-control > div:nth-of-type(1) button {
  background-color: #f4f6f7;
  border-radius: 10rem;
  height: 100%;
  aspect-ratio: 1/1;
  border: none;
  cursor: pointer;
}

.plan-added-sections {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plan-added-section {
  display: flex;
  gap: 0.5rem;
}

.plan-added-section button {
  height: 1.25rem;
  padding: 0.5rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.plan-new-plan-form {
  position: fixed;
  top: 3rem;
  width: 100%;
  display: none;
  justify-content: center;
  transition: all 0.2s;
}

.plan-new-plan-form form {
  background-color: #f4f6f7;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  border-radius: 1rem;
  margin: 10px;
  border: 1px solid #0a2c61;
  border-radius: 10px;
}

.plan-new-plan-form form a,
.plan-new-plan-form form button {
  color: #0c1e33;
  border: none;
  border-radius: 2px;
  padding: 0.25rem 1rem;
  transition: all 0.2s;
  cursor: pointer;
  font-size: 0.75rem;
  background-color: #ccefbf;
}

.plan-new-plan-form form a:hover,
.plan-new-plan-form form button:hover {
  background-color: #87a67b;
}

.login-right .btn {
  background-color: #0a2c61;
  color: white;

  text-align: center;
  border: none;
  transition: 0.25s;
  border-radius: 10px;  
  font-weight: 500;
  width: 10rem;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
}

.login-right form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.login-right p {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center ;
}

.login-right .btn:hover {
  background: #133d82;
}

.form-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 40px auto;
  margin: 40px auto;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  
  font-family: 'Roboto', sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: 'wdth' 100;
}
.form {
  display: flex;
  justify-content: center;
  align-items: stretch;

  flex-direction: column;
  gap: 5vh;
}
.form-container h1 {
  text-align: center;

  margin-bottom: 23px;
  font-size: 3rem;
  font-size: 3rem;
  font-weight: 700;

  color: #0a2c61;
}

.form-container label {
  font-weight: 600;

  text-align: center;

  margin-bottom: 20px;
}

.form-container input,
.form-container select,
.form-container textarea {
  width: 100%;
  padding: 12px 20px;
  margin-bottom: 18px;

  border: 1px solid #a09999;
  border-radius: 8px;

  font-size: 1rem;
}

.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus {
  border-color: #133d82;
  outline: none;
}

.form-container .btn {
  background-color: #133d82;
  color: white;

  text-align: center;
  border: none;

  border-radius: 10px;
  font-weight: 500;

  font-size: 1.5rem;
  cursor: pointer;
}

.form-container .btn:hover {
  background: #133d82;
}

.form-container label {
  font-size: 1.5rem;
}

.list-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-style: normal;

  text-align: center;
  margin: 20px 0 30px 0;
  font-size: 2.5rem;
  color: #0a2c61;
  font-weight: 700;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;

  gap: 25px;

  border: #0a2c61;
}

.card-link {
  text-decoration: none;
  color: inherit;
}

.card-link:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.12);
}

.card {
  border-radius: 15px;
  padding: 25px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  width: 90%;
  box-sizing: border-box;

  font-size: 1.5rem;
}

.card-title {
  font-size: 2rem;
  font-weight: 900;

  color: #0f4396;

  margin-bottom: 15px;
  display: block;
}

.card-detail {
  font-size: 1rem;
  margin: 8px;
}

.search-form {
  display: flex;
  justify-content: flex-start;
  align-items: center;

  margin: 20px;
}

.search-form input[type='text'] {
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 300px;
  font-size: 1rem;
  width: 90vw;
}

.search-form button {
  background-color: #0a2c61;
  color: white;

  text-align: center;
  border: none;

  border-radius: 10px;
  font-weight: 500;

  font-size: 1rem;
  cursor: pointer;

  padding: 9px;
}

.search-form button:hover {
  background: #133d82;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  padding: 10px;

  border-radius: 3px;

  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.admin-table thead {
  background: #0a2c61;
  color: white;
}

.admin-table thead th {
  padding: 12px;

  text-align: center;

  font-weight: 600;

  font-size: 1rem;
}

.admin-table tbody td {
  padding: 12px;
  border-bottom: 1px #0a2c61;

  font-size: 1rem;
  text-align: center;
}

.admin-table tbody tr:hover {
  background: #91b4ec83;
}

.admin-table a {
  padding: 8px;
  background: #0a2c61;

  color: white;

  border-radius: 7px;

  text-decoration: none;
  font-size: 1rem;
}

.admin-table a:hover {
  background: #133d82;
}

.error-message {
  color: rgba(255, 0, 0, 0.63);

  background-color: #fff6f6;

  border: 1px solid rgba(255, 0, 0, 0.63);

  border-radius: 30px;
}

/* FACULTY CSS */

.tutor-sections-body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
}

/* FACULTY CSS */

.tutor-sections-body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
}

.icon {
  height: 2rem;
  margin-right: 10px;
  vertical-align: middle;
}
.tutor-sections-page {
  margin: 30px;
  padding: 25px;
}
.section-header {
  margin: 0 0 30px 0;
  color: #2c3e50;
  border-bottom: 2px solid #eee;
  padding-bottom: 15px;
  font-size: 1.8rem;
}
.no-sections {
  margin: 20px 0;
  padding: 15px;
  background-color: #f8f9fa;
  border-left: 4px solid #6c757d;
}
.sections-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
}
.sections-table th,
.sections-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
}
.sections-table th {
  background-color: #ffffff;
  color: #495d72;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: normal;
}
.sections-table tr:hover {
  background-color: #f8f9fa;
}
.sections-table tr {
  background-color: #f8f9fa;
}
.sections-table p {
  margin: 8px 0;
  line-height: 1.4;
}

.button-lists {
  display: flex;
  align-self: flex-end;
  justify-self: flex-end;

  border: none;
}

.button-lists button {
  border: none;
  color: white;
  background-color: #0c1e33;

  padding: 10px;

  cursor: pointer;

  border-radius: 10px;
}

.button-lists button:hover {
  background: #133d82;
}

.details-container {
  display: flex;
  justify-self: center;
  align-self: center;
  justify-content: center;
  align-items: center;

  flex-direction: column;
  gap: 10px;

  margin: 10px;
  padding: 10px;

  border: 1px solid #0c1e336b;
  box-shadow: 6px 4px 11px rgba(0, 0, 0, 0.32);

  border-radius: 15px;

  width: 40vh;
  height: 30vw;
}

.details-title {
  display: flex;

  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.details-title h3 {
  font-size: 2rem;
}
.details-title h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-style: normal;

  color: #133d82;
}

.details-content {
  display: flex;
  flex-direction: column;
  align-content: stretch;

  width: fit-content;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-style: normal;
}


.details-actions a {
  text-decoration: none;
  background-color: #133d82;
  color: white;
}
  .tutor-sections-body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  }


  .icon {
    height: 2rem;
    margin-right: 10px;
    vertical-align: middle;
  }
  .tutor-sections-page {
    margin: 30px;
    padding: 25px;
  }
  .section-header {
    margin: 0 0 30px 0;
    color: #2c3e50;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    font-size: 1.8rem;
  }
  .no-sections {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-left: 4px solid #6c757d;
  }
  .sections-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
  }
  .sections-table th,
  .sections-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
  }
  .sections-table th {
    background-color: #ffffff;
    color: #495d72;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .sections-table tr:hover {
    background-color: #f8f9fa;
  }
  .sections-table tr {
    background-color: #f8f9fa;
  }
  .sections-table p {
    margin: 8px 0;
    line-height: 1.4;
  }

  
    .grade-display {
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    min-width: 30px;
}

.grades { background-color: #d4edda; color: #155724; }
.status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.status-passed { background-color: #CCEFBF; color: black; }
.status-failed { background-color: #FDE1AC; color: black; }

.success-message {
    background-color: #CCEFBF;
    color: #155724;
    padding: 12px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    border-left: 4px solid #28a745;
}
