/* Define Tajawal Font */
@font-face {
  font-family: "Tajawal";
  src: url("../assets/fonts/tajwal/Tajawal-Regular.ttf") format("truetype");
  font-weight: 400; /* Regular */
  font-style: normal;
}

@font-face {
  font-family: "Tajawal";
  src: url("../assets/fonts/tajwal/Tajawal-Medium.ttf") format("truetype");
  font-weight: 500; /* Medium */
  font-style: normal;
}

@font-face {
  font-family: "Tajawal";
  src: url("../assets/fonts/tajwal/Tajawal-Bold.ttf") format("truetype");
  font-weight: 700; /* Bold */
  font-style: normal;
}

@media (max-width: 768px) {
  .centered-box {
    height: 90vh; /* Increase height for small screens */
    width: 95%; /* Increase width for small screens */
    max-width: none; /* Remove max-width for small screens */
    min-height: 504px; /* Restore larger minimum height for small screens */
  }

  .left-section,
  .right-section {
    width: 100% !important;
  }

  .left-section {
    height: 200px; /* Adjust as needed */
  }
}

body {
  font-family: "Tajawal", sans-serif;
  font-weight: 400; /* Regular */
  background-color: var(--gray-bg);
  min-width: 400px;
  scroll-behavior: smooth;
  padding: 0px;
  margin: 0px;
  position: relative;
}

h1,
h2,
h3 {
  font-family: "Tajawal", sans-serif;
  font-weight: 700; /* Bold */
}

p {
  font-family: "Tajawal", sans-serif;
  font-weight: 500; /* Medium */
}
* {
  font-family: "Tajawal", sans-serif;
  font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0px;
  padding: 0px;
}

.fs-1px {
  font-size: 1px;
}
.fs-2px {
  font-size: 2px;
}
.fs-3px {
  font-size: 3px;
}
.fs-4px {
  font-size: 4px;
}
.fs-5px {
  font-size: 5px;
}
.fs-6px {
  font-size: 6px;
}
.fs-7px {
  font-size: 7px;
}
.fs-8px {
  font-size: 8px;
}
.fs-9px {
  font-size: 9px;
}
.fs-10px {
  font-size: 10px;
}
.fs-11px {
  font-size: 11px;
}
.fs-12px {
  font-size: 12px;
}
.fs-13px {
  font-size: 13px;
}
.fs-14px {
  font-size: 14px;
}
.fs-15px {
  font-size: 15px;
}
.fs-16px {
  font-size: 16px;
}
.fs-17px {
  font-size: 17px;
}
.fs-18px {
  font-size: 18px;
}
.fs-19px {
  font-size: 19px;
}
.fs-20px {
  font-size: 20px;
}
.fs-30 {
  font-size: 30px;
}
.fs-40 {
  font-size: 40px;
}
.fs-50 {
  font-size: 50px;
}
.fs-60 {
  font-size: 60px;
}
.fs-70 {
  font-size: 70px;
}
.fs-80 {
  font-size: 80px;
}

/* for bootstrap v4 */

.min-vh-100 {
  min-height: 100vh;
}

.bottom-0 {
  bottom: 0;
}
.right-0 {
  right: 0;
}

.top-50 {
  top: 50%;
  transform: translate(0, -50%);
}

.me-4 {
  margin-right: 1.5rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 1rem;
}
.gap-5 {
  gap: 3rem;
}
.rounded-pill {
  border-radius: 50rem;
}
/* Gray Text Classes */
.text-light {
  color: #fff;
}
.text-dark-gray {
  color: #333333; /* Dark Gray */
}

.text-medium-gray {
  color: #666666; /* Medium Gray */
}

.text-light-gray {
  color: #999999; /* Light Gray */
}
.img {
  max-width: 100%;
  max-height: 100%;
}
.vertical_hr {
  height: 100%;
  border: 1px solid #e3e3ec;
  margin: 0px;
}
.gap-1 {
  gap: 0.2rem;
}
.gap-20 {
  gap: 20px;
}
.w-100 {
  width: 100%;
}

button:focus,
.btn:focus {
  outline: none;
  box-shadow: none;
}
button {
  cursor: pointer;
}
.centered-box {
  max-width: 800px; /* Smaller maximum width for large screens */
  width: 80%; /* Smaller responsive width */

  /* min-height: 400px; Smaller minimum height */
  overflow-y: auto; /* Allow vertical scrolling */
  overflow-x: hidden; /* Prevent horizontal scrolling */
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.text-start {
  text-align: start;
}
/* Responsive Adjustments */
@media (max-height: 504px) {
  .centered-box {
    height: 90vh; /* Increase height for very small screens */
    min-height: auto; /* Remove fixed minimum height */
  }

  .logo-bottom {
    position: static; /* Move the bottom logo to the normal flow */
    margin-top: 20px; /* Add some space above the logo */
    text-align: center; /* Center the logo */
  }

  .buttons {
    margin-bottom: 20px; /* Add space below the buttons */
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .centered-box {
    height: 90vh; /* Increase height for small screens */
    width: 95%; /* Increase width for small screens */
  }

  .btn-custom-1,
  .btn-custom-2,
  .btn-custom-3 {
    width: 90%; /* Increase button width for small screens */
    max-width: 100%; /* Allow buttons to take full width */
  }
}

/* inputs */
input:focus-visible {
  border: 0px;
  outline: unset;
}
.form-group {
  /* margin:0px; */
  position: relative;
}
/* .form-control {
  padding: 14px;
} */
.form-control:focus {
  border: 1px solid #868686;
  outline: 0;
  box-shadow: unset;
}
select {
  appearance: none; /* Remove default icon */
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
}
.select-container {
  position: relative;
}
.select-container::after {
  content: "\f107";
  font-family: "Font Awesome";
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translate(14px, -50%);
  z-index: 11;
}

/* Full-Page Background */
.full-page-background {
  background: url("../assets/images/page-bg.jpg") no-repeat center center/cover;
}

/* Left Section Background */
.left-section-bg {
  background: url("../assets/images/left-bg.jpg") no-repeat center center/cover;
}

/* Custom Button Hover Effect */
.btn-custom:hover {
  background-color: #0056b3 !important;
}

/* Custom Button Icon Styles */
.btn-icon {
  width: 88px; /* Icon size */
  height: 88px; /* Icon size */
  position: absolute;
  right: -30px; /* Move icon outside the button */
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Center vertically */
}

/* Custom Button Text Styles */
.btn-text {
  padding-right: 45px; /* Add space between text and icon */
}
.logo-top {
  width: 100%; /* Ensure the div has a width */
  text-align: center; /* Center the image horizontally */
}
.logo-top img {
  max-width: 100%; /* Ensure the SVG doesn't overflow */
  height: auto; /* Maintain aspect ratio */
}

/* Animation for Right Section and Login Box */
#rightSection,
#loginBox {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#rightSection {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.login-box {
  width: clamp(350px, 35vw, 800px);
  padding: clamp(30px, 4vw, 55px);
}
.login-img {
  max-width: 350px;
}
.toggle-password {
  position: absolute;
  bottom: 11px;
  inset-inline-end: 13px;
  cursor: pointer;
}
/* remove password icon */
input[type="password"]::-ms-reveal {
  display: none;
}

input[type="password"]::-ms-clear {
  display: none;
}
#rightSection.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20px);
  display: none !important;
}

#loginBox.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
/* scrollbar */
::-webkit-scrollbar {
  width: 7px;
  background: #c3cec991;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary), var(--third-color));
  border-radius: 10px;
}
::placeholder,
option:disabled {
  color: var(--placeholder);
  font-size: 14px;
  font-weight: 400;
}
.mx-content {
  min-width: max-content;
}
.max-content {
  max-width: max-content;
}

.content {
  padding: 20px 0px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* overflow: auto; */
}

/* cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.border_right {
  border-right: 10px solid;
}
.semon_border {
  border-color: #f29993;
}
.violet_border {
  border-color: #5c4e8e;
}
.green_border {
  border-color: #7cc242;
}
.orange_border {
  border-color: #ff7a00;
}
.yellow_border {
  border-color: #ffc000;
}
.blue_border {
  border-color: #007593;
}
.mauve_border {
  border-color: #c5388c;
}
.royal_blue_border {
  border-color: #4b71dd;
}

.cards .details_card {
  width: calc((100% - (20px * 3)) / 4);
  border-radius: 10px;
  background: #fff;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15%;
}
.details_card_title {
  font-size: 14px;
  font-weight: 500;
}
.details_card_no {
  font-size: 24px;
  font-weight: 500;
}
.details_card svg {
  min-width: 30px;
  min-height: 30px;
}
.main_card {
  border-radius: 10px;
  background: #fff;
  padding: 1rem 1.2rem;
}
.card_year {
  color: #d9d9d9;
  font-size: 46px;
  font-weight: 700;
  text-transform: capitalize;
}
/* charts */
.chart {
  margin: 0px;
  padding: 0px;
}
.main_card_title {
  font-size: 16px;
  font-weight: 700;
}
.chart_result {
  font-size: 12px;
  font-weight: 500;
}

/* tables */
.table {
  overflow-x: scroll;
}
.table thead th[scope="col"] {
  border: 0;
  font-weight: 500;
  font-size: 14px;
}

.table tbody td,
.table tbody th[scope="row"] {
  font-weight: 400;
  font-size: 14px;
}

.table td,
.table th {
  border-bottom: 1px solid #dee2e6;
}
.padding-custom {
  padding: 1rem 1.2rem 0 1.2rem;
}
/* .table-actions button {
  border: none;
} */
/* dashboard */

/* table tr:hover {
  background: transparent !important;
} */
/* Make the last column always align to the right */
/* td:last-child {
white-space: nowrap; 
} */
.badge {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  padding: 4px 12px;
}

.badge-normal {
  background: rgba(124, 194, 66, 0.05);
  border: 1px solid var(--secondary);
  color: var(--secondary);
}
/* .table-actions button{
  background: none;
  border: none;
} */
.table-actions .show:hover path {
  stroke: var(--primary);
}
.table-actions .edit:hover path {
  stroke: var(--secondary);
}

input[type="checkbox"] {
  position: relative;
  border: 2px solid var(--placeholder);
  border-radius: 6px;
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 0 0.6em 0 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 20px;
  width: 20px;
  -webkit-appearance: none;
}

input[type="checkbox"]:checked {
  background-color: var(--placeholder);
}

input[type="checkbox"]:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 4px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}

/* pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.pagination a {
  color: var(--placeholder);
  text-decoration: none;
  font-size: 14px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.pagination .prev-page,
.pagination .next-page {
  display: flex;
  padding: 8px 14px;
  width: fit-content;
  border: 1px solid var(--Gray-300, #d5d7da);
  border-radius: 24px;
  color: var(--Gray-700, #414651);
  gap: 8px;
  background-color: #fff;
  font-size: 14px;
}
.pagination a.active {
  background-color: var(--primary-light); /* Dark blue color */
  color: var(--primary);
  border: none;
}
/* modal */
.modal-header,
.modal-footer {
  border-bottom: none;
  border-top: none;
}
.modal-header .close {
  padding: 5px 8px;
  margin: 1px;
  color: var(--primary);
  opacity: 1;
  background: #f8f9fc;
  border-radius: 8px;
}

.modal-dialog {
  max-width: 51%;
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
}
.modal-content {
  border-radius: 12px;
}

.fa-asterisk:before {
  font-size: 6px;
  color: #f24135;
  margin: 5px;
  margin-bottom: 10px;
}

/* Responsive Adjustments */
@media screen and (max-width: 1000px) {
  .details_card {
    width: calc((100% - 20px) / 2) !important;
  }
}
@media screen and (max-width: 820px) {
  .user-name {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .modal-dialog {
    max-width: 80%;
    margin: 1.75rem auto;
  }
}
@media screen and (max-width: 650px) {
  .top-bar {
    flex-wrap: wrap;
  }
  .welcome_text {
    width: 100%;
  }
}

/* pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.pagination a {
  color: var(--placeholder);
  text-decoration: none;
  font-size: 14px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.pagination .prev-page,
.pagination .next-page {
  display: flex;
  padding: 8px 14px;
  width: fit-content;
  border: 1px solid var(--Gray-300, #d5d7da);
  border-radius: 24px;
  color: var(--Gray-700, #414651);
  gap: 8px;
  background-color: #fff;
  font-size: 14px;
}
.pagination a.active {
  background-color: var(--primary-light); /* Dark blue color */
  color: var(--primary);
  border: none;
}

/* calender */
.box {
  width: 575px;
  height: 579px;
}

.box .calender {
  position: fixed;
  width: 577px;
  height: 579px;
  top: 0;
  left: 0;
}

.box .overlap {
  position: relative;
  width: 575px;
  height: 579px;
  background-color: #ffffff;
  border-radius: 10px;
}

.box .calender-attendance {
  position: absolute;
  width: 528px;
  height: 142px;
  top: 422px;
  left: 24px;
  background-color: #f3f3f3;
  border-radius: 10px;
}

.box .frame {
  display: flex;
  flex-direction: column;
  width: 484px;
  align-items: flex-end;
  gap: 16px;
  position: relative;
  top: 24px;
  left: 23px;
}

.box .group {
  position: relative;
  width: 484.42px;
  height: 19px;
}

.box .div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: 0;
  left: 0;
}

.box .element {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Tajawal-Bold", Helvetica;
  font-weight: 700;
  color: transparent;
  font-size: 16px;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 0;
  line-height: normal;
  direction: rtl;
}

.box .text-wrapper {
  color: #000000;
}

.box .span {
  color: #cd2116;
}

.box .ellipse {
  background-color: #cd2216;
  position: relative;
  width: 8.42px;
  height: 8.42px;
  border-radius: 4.21px;
}

.box .frame-2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: 0;
  left: 400px;
}

.box .text-wrapper-2 {
  color: #007593;
}

.box .ellipse-2 {
  background-color: var(--collection-1-color);
  position: relative;
  width: 8.42px;
  height: 8.42px;
  border-radius: 4.21px;
}

.box .frame-3 {
  display: flex;
  flex-direction: column;
  width: 473px;
  align-items: flex-end;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.box .text-wrapper-3 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Tajawal-Bold", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
  direction: rtl;
}

.box .p {
  position: relative;
  align-self: stretch;
  height: 33.37px;
  font-family: "Tajawal-Regular", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 12px;
  letter-spacing: 0;
  line-height: normal;
  direction: rtl;
}

.box .frame-4 {
  display: flex;
  width: 99px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 10px;
  position: absolute;
  top: 59px;
  left: 353px;
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid;
  border-color: #868686;
}

.box .flat-color-icons {
  position: relative;
  width: 12px;
  height: 12px;
}

.box .text-wrapper-4 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Tajawal-Medium", Helvetica;
  font-weight: 500;
  color: #000000;
  font-size: 12px;
  white-space: nowrap;
  letter-spacing: 0;
  line-height: normal;
  direction: rtl;
}

.box .frame-5 {
  display: flex;
  width: 82px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 10px;
  position: absolute;
  top: 59px;
  left: 20px;
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid;
  border-color: #868686;
}

.box .text-wrapper-5 {
  width: fit-content;
  margin-top: -1px;
  font-family: "Tajawal-Medium", Helvetica;
  font-weight: 500;
  font-size: 12px;
  white-space: nowrap;
  position: relative;
  color: #000000;
  letter-spacing: 0;
  line-height: normal;
}

.box .frame-6 {
  display: flex;
  width: 87px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 10px;
  position: absolute;
  top: 59px;
  left: 468px;
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid;
  border-color: #868686;
}

.box .text-wrapper-6 {
  position: absolute;
  height: 19px;
  top: 16px;
  left: 440px;
  font-family: "Tajawal-Bold", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: 16px;
  white-space: nowrap;
  letter-spacing: 0;
  line-height: normal;
  direction: rtl;
}

.box .group-2 {
  position: absolute;
  width: 537px;
  height: 286px;
  top: 119px;
  left: 20px;
}

.box .text-wrapper-7 {
  position: absolute;
  height: 17px;
  top: 3px;
  left: 221px;
  font-family: "Tajawal-Bold", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: 14px;
  text-align: left;
  letter-spacing: 0;
  line-height: normal;
  direction: rtl;
}

.box .img {
  position: absolute;
  width: 36px;
  height: 22px;
  top: 0;
  left: 499px;
}

.box .frame-7 {
  position: absolute;
  width: 36px;
  height: 22px;
  top: 0;
  left: 0;
}

.box .div-wrapper {
  display: flex;
  width: 70px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  position: absolute;
  top: 46px;
  left: 0;
  background-color: #ffffff;
  border-radius: 10px;
  border: 2px solid;
  border-color: #f4f5f6;
}

.box .text-wrapper-8 {
  position: relative;
  width: fit-content;
  font-family: "Tajawal-Bold", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}

.box .frame-8 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 100px;
  left: 248px;
  border-radius: 100px;
}

.box .text-wrapper-9 {
  width: fit-content;
  font-family: "Tajawal-Bold", Helvetica;
  font-weight: 700;
  font-size: 13.8px;
  position: relative;
  color: #000000;
  letter-spacing: 0;
  line-height: normal;
}

.box .frame-9 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 138px;
  left: 248px;
  background-color: #3fb65f;
  border-radius: 100px;
}

.box .overlap-group {
  position: absolute;
  width: 267px;
  height: 35px;
  top: 213px;
  left: 172px;
  background-color: #60d27f;
  border-radius: 100px;
}

.box .frame-10 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 0;
  left: 76px;
  background-color: #3fb65f;
  border-radius: 100px;
}

.box .frame-11 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 0;
  left: 155px;
  background-color: #3fb65f;
  border-radius: 100px;
}

.box .frame-12 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 0;
  left: 233px;
  background-color: #3fb65f;
  border-radius: 100px;
}

.box .frame-13 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #3fb65f;
  border-radius: 100px;
}

.box .frame-14 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 176px;
  left: 248px;
  border-radius: 100px;
}

.box .frame-15 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 252px;
  left: 248px;
  border-radius: 100px;
}

.box .frame-16 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 100px;
  left: 326px;
  border-radius: 100px;
}

.box .frame-17 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 138px;
  left: 326px;
  border-radius: 100px;
}

.box .frame-18 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 176px;
  left: 326px;
  background-color: #ffc000;
  border-radius: 100px;
}

.box .text-wrapper-10 {
  width: 17.7px;
  font-family: "Tajawal-Bold", Helvetica;
  font-weight: 700;
  font-size: 13.8px;
  position: relative;
  color: #000000;
  letter-spacing: 0;
  line-height: normal;
}

.box .frame-19 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 252px;
  left: 326px;
  border-radius: 100px;
}

.box .frame-20 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 100px;
  left: 405px;
  border-radius: 100px;
}

.box .frame-21 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 138px;
  left: 405px;
  border-radius: 100px;
}

.box .frame-22 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 176px;
  left: 405px;
  border-radius: 100px;
}

.box .frame-23 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 252px;
  left: 405px;
  border-radius: 100px;
}

.box .frame-24 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 100px;
  left: 483px;
  border-radius: 100px;
}

.box .frame-25 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 138px;
  left: 483px;
  border-radius: 100px;
}

.box .frame-26 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 176px;
  left: 483px;
  border-radius: 100px;
}

.box .frame-27 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 214px;
  left: 483px;
  border-radius: 100px;
}

.box .frame-28 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 252px;
  left: 483px;
  border-radius: 100px;
}

.box .frame-29 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 100px;
  left: 172px;
  border-radius: 100px;
}

.box .frame-30 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 138px;
  left: 172px;
  border-radius: 100px;
}

.box .frame-31 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 176px;
  left: 172px;
  border-radius: 100px;
}

.box .frame-32 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 252px;
  left: 172px;
  border-radius: 100px;
}

.box .frame-33 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 100px;
  left: 94px;
  border-radius: 100px;
}

.box .frame-34 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 138px;
  left: 94px;
  border-radius: 100px;
}

.box .frame-35 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 176px;
  left: 94px;
  border-radius: 100px;
}

.box .frame-36 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 214px;
  left: 94px;
  border-radius: 100px;
}

.box .frame-37 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 252px;
  left: 94px;
  border-radius: 100px;
}

.box .frame-38 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 100px;
  left: 16px;
  border-radius: 100px;
}

.box .frame-39 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 138px;
  left: 16px;
  border-radius: 100px;
}

.box .frame-40 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 176px;
  left: 16px;
  border-radius: 100px;
}

.box .frame-41 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 214px;
  left: 16px;
  border-radius: 100px;
}

.box .frame-42 {
  display: inline-flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 7.9px;
  padding: 7.9px;
  position: absolute;
  top: 252px;
  left: 16px;
  border-radius: 100px;
}

.box .frame-43 {
  display: flex;
  width: 70px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  position: absolute;
  top: 46px;
  left: 77px;
  background-color: #ffffff;
  border-radius: 10px;
  border: 2px solid;
  border-color: #f4f5f6;
}

.box .text-wrapper-11 {
  position: relative;
  width: fit-content;
  margin-left: -0.5px;
  font-family: "Tajawal-Bold", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}

.box .frame-44 {
  display: flex;
  width: 70px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  position: absolute;
  top: 46px;
  left: 154px;
  background-color: #ffffff;
  border-radius: 10px;
  border: 2px solid;
  border-color: #f4f5f6;
}

.box .frame-45 {
  display: flex;
  width: 70px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  position: absolute;
  top: 46px;
  left: 233px;
  background-color: #ffffff;
  border-radius: 10px;
  border: 2px solid;
  border-color: #f4f5f6;
}

.box .frame-46 {
  display: flex;
  width: 70px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  position: absolute;
  top: 46px;
  left: 308px;
  background-color: #ffffff;
  border-radius: 10px;
  border: 2px solid;
  border-color: #f4f5f6;
}

.box .frame-47 {
  display: flex;
  width: 70px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  position: absolute;
  top: 46px;
  left: 385px;
  background-color: #ffffff;
  border-radius: 10px;
  border: 2px solid;
  border-color: #f4f5f6;
}

.box .frame-48 {
  display: flex;
  width: 70px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  position: absolute;
  top: 46px;
  left: 462px;
  background-color: #ffffff;
  border-radius: 10px;
  border: 2px solid;
  border-color: #f4f5f6;
}
/* Inject original CSS here */

.calendar-container {
  width: 100%;
  height: 579px;
}

.calendar {
  position: relative;
  width: 100%;
  height: 579px;
  background-color: #ffffff;
  border-radius: 10px;
}

.calendar-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calendar-title {
  font-weight: 700;
  color: #000000;
  font-size: 16px;
  text-align: right;
}

.filter-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.filter-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid #868686;
  cursor: pointer;
  color: #000;
  text-align: right;
  font-size: 12px;
  font-weight: 500;
  min-width: 100px;
}
.calendar-body {
  margin-top: 24px;
}

.calendar-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.nav-button {
  background: var(--primary);
  border: none;
  cursor: pointer;
  border-radius: 12px;
}

.arrow {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  min-width: 35px;
}

.current-date {
  font-weight: 700;
  color: #000000;
  font-size: 14px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.weekday {
  text-align: center;
  font-weight: 700;
  color: #000000;
  font-size: clamp(12px, 1vw, 14px);
  padding: clamp(1px, 1vw, 10px);
  background-color: #ffffff;
  border-radius: 10px;
  border: 2px solid #f4f5f6;
}

.date {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #000000;
  background: none;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
}

.date.highlight {
  background-color: #ffc000;
}
.date.present {
  background-color: #3fb65f;
}
.calendar-footer {
  background-color: #f3f3f3;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.attendance-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
.attendance-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.attendance-label {
  font-weight: 700;
  color: #000000;
  font-size: 16px;
}
.attendance-value {
  font-weight: 700;
  font-size: 16px;
}
.attendance-value.present {
  color: #007593;
}
.attendance-value.absent {
  color: #cd2116;
}
.attendance-indicator {
  width: 8.42px;
  height: 8.42px;
  border-radius: 50%;
}
.attendance-indicator.present {
  background-color: #007593;
}
.attendance-indicator.absent {
  background-color: #cd2216;
}
.report-title {
  font-weight: 700;
  color: #000000;
  font-size: 14px;
  margin-bottom: 8px;
}
.report-content {
  font-weight: 400;
  color: #000000;
  font-size: 12px;
  line-height: 1.4;
}
/* forms */
.stepper-circle {
  background: #8b8d98;
  border-radius: 50%;
  padding: 3px 11px;
  color: #fff;
  font-size: 14px;
}
.stepper-default {
  color: #8b8d98;
}
.completed .stepper-default {
  color: var(--secondary);
}
.completed .stepper-circle {
  background: var(--secondary);
}
.form-2 {
  display: none;
}
/* Responsive Adjustments */
@media (max-height: 504px) {
  .centered-box {
    height: 90vh; /* Increase height for very small screens */
    min-height: auto; /* Remove fixed minimum height */
  }

  .logo-bottom {
    position: static; /* Move the bottom logo to the normal flow */
    margin-top: 20px; /* Add some space above the logo */
    text-align: center; /* Center the logo */
  }

  .buttons {
    margin-bottom: 20px; /* Add space below the buttons */
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .centered-box {
    height: 90vh; /* Increase height for small screens */
    width: 95%; /* Increase width for small screens */
  }

  .btn-custom-1,
  .btn-custom-2,
  .btn-custom-3 {
    width: 90%; /* Increase button width for small screens */
    max-width: 100%; /* Allow buttons to take full width */
  }
}
