.layout {
  width: 100%;
}

.adminlayout {
  font-size: 0.8rem !important;
}

.hamburger {
  display: none;
  position: absolute;
  top: 10px;
  left: 10px;
  background: navy;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  z-index: 1001;
}

.sidebar {
  width: 20%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
  background: #fff;
  border-right: 1px solid #ddd;
  padding: 20px;
  transition: transform 0.3s ease;
}
.sidebar a {
  color: #333;
}

.sidebar.open {
  width: 20%;
}

.sidebar:not(.open) {
  width: 120px;
}

.sidebar img {
  width: 100px;
}

.nav-links li {
  display: flex;
  align-items: center;
  padding: 10px;
}

.nav-links i {
  font-size: 18px;
  width: 30px;
  text-align: center;
}

.sidebar:not(.open) .nav-links span {
  display: none;
}

/* Optional: Make icons slightly larger when sidebar is closed */
.sidebar:not(.open) .nav-links i {
  font-size: 1rem;
}

.user-info {
  text-align: center;
  margin: 20px 0;
}

.user-info img {
  height: 40px;
  width: auto;
}

.main-content {
  width: 80%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.main-open {
  padding-left: 120px;
}

.main-close {
  padding-left: 20%;
}

.header {
  border-bottom: 1px solid #ccc;
  background: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.header a {
  color: #0a3c7b;
  margin-right: 1rem;
  font-weight: 600;
  font-size: 0.85rem;
}
.header a:hover {
  text-decoration: underline;
}

.content {
  background-color: #fff;
  padding: 20px;
}

/* Small screen styles */
@media (max-width: 768px) {
  .layout {
    flex-direction: column;
  }
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    transform: translateX(-100%);
    z-index: 1000;
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .hamburger {
    display: block;
  }
  .main-content {
    padding-left: 0;
  }
}
.form-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin: 1rem;
}

form {
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.date-range-radio {
  height: auto !important;
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.form-group label span {
  color: red;
}
.form-group input,
.form-group select {
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  background: #fff;
  color: #000;
  outline: none;
  height: 2.5rem;
  margin: 0.5rem;
}
.form-group input:focus,
.form-group select:focus {
  border-style: solid;
  border-color: #000080;
}
.form-group select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23000' height='24' viewBox='0 0 24 24' width='24'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

input[type=text],
input[type=number],
input[type=date],
input[type=email],
input[type=password],
select,
textarea {
  width: 100%;
  padding: 6px;
  margin: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

input[type=file] {
  margin-top: 6px;
}

.button-row {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}
.button-row button {
  background-color: #000080;
  color: #fff;
  border: none;
  padding: 0.7rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.button-row button:hover {
  background-color: #1a237e;
}

.note {
  text-align: center;
  font-size: 0.9rem;
  color: #333;
  margin-top: 1rem;
}

.preview {
  flex: 1;
  padding: 1rem;
  border-left: 1px solid #ccc;
}
.preview h3 {
  color: #000080;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.preview p {
  font-size: 0.95rem;
  margin: 0.4rem 0;
}
.preview p span {
  font-weight: bold;
}

fieldset {
  border: 1px solid var(--color-border, #000080);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

legend {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color-border, #000080);
  padding: 0 0.5rem;
}

.report-section {
  padding: 0.5rem;
  margin: 0.5rem;
  border: 1px solid #eee;
}
.report-section .datefield {
  width: 120px;
}
.report-section .form-group {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.primaryText {
  color: #344395 !important;
}

.primaryColor {
  background-color: #344395;
}

.secondryColor {
  background-color: #373f6d;
}

.disabledColor {
  background-color: #6a6b6d;
}

.lightGrey {
  background-color: #d2d0d0;
}

.lightBlue {
  background-color: #dff6ff;
}

.whiteBg {
  background-color: #fff;
}

.lightGreyBg {
  background-color: #d3d3d3;
}

.btn-colorbg {
  background-color: #e7f0fc;
  color: #374151;
}

.blackk {
  color: #333;
}

.redbg {
  color: red;
}

.darkRedbg {
  color: #d43232;
}

.darkblue {
  color: darkblue;
}

.white {
  color: white;
}

.orange {
  color: #f85a1b;
}

.bluebg {
  background: #3b82f6;
}

.darkbluebg {
  background: #373f6d;
  color: #fff;
}
.darkbluebg a {
  color: #fff;
}

.orangebg, .orangeBg {
  background-color: #f85a1b;
  color: white;
}

.tealbg {
  background-color: #1cbfcf;
  color: white;
}

.blueebg, blueBg {
  background-color: #4b50e6;
  color: white;
}

.purple {
  background-color: purple;
  color: white;
}

.dashboard {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.card-purple,
.card-orange,
.card-teal,
.card-blue {
  flex: 1;
  position: relative;
  height: 130px;
  border-radius: 12px;
  padding: 15px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-purple {
  background-color: purple;
}

.card-orange {
  background-color: #f85a1b;
}

.card-teal {
  background-color: #1cbfcf;
}

.card-blue {
  background-color: #4b50e6;
}

.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.card-title {
  font-size: 20px;
  font-weight: bold;
}

.card-value {
  font-size: 24px;
  font-weight: bold;
}

.circle-number {
  position: absolute;
  top: 15px;
  right: 15px;
  font-weight: bold;
  border: 4px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  line-height: 50px;
  text-align: center;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.numbers {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 160px;
  height: 160px;
}

.number-counts1, .number-counts2 {
  position: absolute;
  font-weight: bold;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  width: 60px;
  line-height: 50px;
  text-align: center;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.number-counts1 span, .number-counts2 span {
  display: block;
  font-size: 1.3rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.4);
}

.number-counts1 {
  top: 5px;
  right: 80px;
}

.number-counts2 {
  top: 5px;
  right: 15px;
}

.login-container {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  margin: 1rem auto;
}

.login-form {
  display: flex;
  flex-direction: column;
}
.login-form h2 {
  margin: 0;
  margin-bottom: 0.5rem;
  color: #1f2937;
  font-size: 1.75rem;
  text-align: center;
}
.login-form p {
  margin-bottom: 1.5rem;
  text-align: center;
  color: black;
}
.login-form label {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #1f2937;
}
.login-form input {
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  background: #fff;
}
.login-form input:focus {
  border-color: #4f46e5;
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}
.login-form button {
  padding: 0.75rem;
  background-color: #4f46e5;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.login-form button:hover {
  background-color: rgb(41.1374407583, 30.5592417062, 217.4407582938);
}
.login-form .extra {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
}
.login-form .extra a {
  color: #4f46e5;
  text-decoration: none;
}
.login-form .extra a:hover {
  text-decoration: underline;
}
.login-form .extra span {
  margin: 0 0.5rem;
  color: #9ca3af;
}

.w10 {
  width: 10% !important;
}
@media only screen and (max-width: 767px) {
  .w10 {
    width: 100% !important;
  }
}

.w15 {
  width: 15% !important;
}
@media only screen and (max-width: 767px) {
  .w15 {
    width: 100% !important;
  }
}

.w20 {
  width: 20% !important;
}
@media only screen and (max-width: 767px) {
  .w20 {
    width: 100% !important;
  }
}

.w25 {
  width: 25% !important;
}
@media only screen and (max-width: 767px) {
  .w25 {
    width: 100% !important;
  }
}

.w24 {
  width: 24%;
}
@media only screen and (max-width: 991px) {
  .w24 {
    width: 48%;
  }
}
@media only screen and (max-width: 767px) {
  .w24 {
    width: 100%;
  }
}

.w30 {
  width: 30% !important;
}
@media only screen and (max-width: 767px) {
  .w30 {
    width: 100% !important;
  }
}

.w40 {
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .w40 {
    width: 100% !important;
  }
}

.w45 {
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .w45 {
    width: 100% !important;
  }
}

.w50 {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .w50 {
    width: 100% !important;
  }
}

.w60 {
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .w60 {
    width: 100% !important;
  }
}

.w70 {
  width: 70% !important;
}
@media only screen and (max-width: 767px) {
  .w70 {
    width: 100% !important;
  }
}

.w75 {
  width: 75% !important;
}
@media only screen and (max-width: 767px) {
  .w75 {
    width: 100% !important;
  }
}

.w80 {
  width: 80% !important;
}
@media only screen and (max-width: 767px) {
  .w80 {
    width: 100% !important;
  }
}

.w90 {
  width: 90%;
}
@media only screen and (max-width: 767px) {
  .w90 {
    width: 100% !important;
  }
}

.w100 {
  width: 100% !important;
}

.flex {
  display: flex;
}

.wrap {
  flex-wrap: wrap;
}

.column-1 {
  flex: 1;
}

.column-2 {
  flex: 2;
}

.justify-end {
  justify-content: flex-end;
  /* Align children at the bottom */
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-around {
  justify-content: space-around;
}

.align-top {
  align-items: flex-start;
  /* Align children to the top */
}

.align-bottom {
  align-items: flex-end;
  /* Align children to the bottom */
}

.align-center {
  align-items: center;
}

.gap1 {
  gap: 1rem;
}

.gap2 {
  gap: 2rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.topbar span {
  padding-left: 5px;
}

.action-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.btn {
  border-radius: 9999px;
  padding: 6px 16px;
  border: none;
  cursor: pointer;
}

.fresher {
  background-color: #fff;
  color: #3b82f6;
  position: relative;
}

.refresher {
  background-color: #3b82f6;
  color: white;
  position: relative;
}

.certificate {
  background-color: #6b21a8;
  color: white;
}

.pay {
  background-color: #22c55e;
  color: white;
}

.badge {
  border-radius: 9999px;
  padding: 2px 8px;
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.badge.white {
  background-color: white;
  color: #4b4ce3;
  border: 1px solid #3b82f6;
}

.badge.blue {
  background-color: #4b4ce3;
  color: white;
}

.right-badge {
  margin-left: -6px;
  margin-right: 10px;
}

.table {
  width: 100%;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border-collapse: collapse;
}

th,
td {
  color: #333;
  padding: 16px;
  text-align: left;
  vertical-align: top;
}
th span,
td span {
  font-size: 0.75rem !important;
  color: #0056b3;
}

thead {
  background-color: #e7f0fc;
  color: #374151;
}

tbody tr {
  border-top: 1px solid #e5e7eb;
}

.actions button {
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 8px;
}

.toggle-group {
  margin: 0 1rem;
  display: flex;
  background-color: #8787c6;
  border-radius: 999px;
  overflow: hidden;
}

.toggle-group .btn {
  background: transparent;
}

.toggle-group .btn.active {
  background-color: white;
  color: #4b4ce3;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.badge.white {
  background-color: white;
  color: #4b4ce3;
}

.badge.blue {
  background-color: #4b4ce3;
  color: white !important;
}

.right-badge {
  margin-left: -6px;
  margin-right: 10px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 20px;
  width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.modal-content h3 {
  margin-bottom: 15px;
}

.modal-content form div {
  margin-bottom: 10px;
}

.modal-content input {
  width: 100%;
  padding: 5px;
}

.modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.input-group {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Segoe UI", sans-serif;
}

.search-input {
  padding: 6px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 180px;
  color: #333;
}

.search-input::-moz-placeholder {
  color: #999;
}

.search-input::placeholder {
  color: #999;
}

.date-input {
  padding: 6px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 2px;
  color: #333;
}

.to-label {
  font-size: 14px;
  color: #333;
}

.search-bar {
  display: flex;
  padding-top: 1rem;
  padding-left: 10px;
  gap: 10px;
}

.reprint-table {
  width: 100%;
  border-collapse: collapse; /* Ensures borders don't double up */
  background-color: white; /* White background for the table */
}

.reprint-table th,
.reprint-table td {
  border: 1px solid black; /* Adds black borders to cells */
  padding: 8px;
  text-align: left;
}

.reprint-table th {
  background-color: #003366; /* Dark blue background for header */
  color: white; /* White text for header */
  font-weight: bold;
}

.reprint-table tr:nth-child(even) {
  background-color: #f2f2f2; /* Light gray background for even rows */
}

.reprint-table tr:hover {
  background-color: #d9edf7; /* Light blue background on hover */
}

.search-bar {
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
}

.search-bar input {
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.search-bar button {
  padding: 5px 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.search-bar button:hover {
  background-color: #0056b3;
}

label {
  display: block;
  margin-bottom: 4px;
}

.section-title {
  font-weight: bold;
  margin: 20px 0 10px;
  width: 100%;
}

.checkbox-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.submit-row {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.submit-row button {
  padding: 10px 20px;
  background-color: green;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.required {
  color: rgb(235, 55, 55);
}

.vertical-center {
  vertical-align: middle;
}

.big-chkbox {
  width: 40px;
  height: 30px;
  font-size: 16px;
}

.small-input {
  font-size: 0.85rem;
  width: 90px !important;
}

.number-input {
  display: block;
  padding: 0px 5px !important;
  margin: 0px !important;
  font-size: 0.85rem;
  width: 80px !important;
}

.collapse-table {
  border-collapse: collapse;
}
.collapse-table td, .collapse-table th {
  border: 1px solid #f0efef;
  padding: 2px !important;
}

.toggle {
  display: inline-flex;
  border: 2px solid #5a4fff;
  border-radius: 10rem;
  overflow: hidden;
  border-style: none;
}

.btn-primary {
  background-color: #0a3c7b;
  color: #fff;
}

.enable {
  border-style: none;
  color: white;
  padding: 3px;
}

.disable {
  border-style: none;
  padding: 3px;
}

.round-btn {
  border-radius: 8px;
  padding: 2px 5px;
  font-size: 0.85rem;
  height: 2rem;
}

.calendar {
  width: 100%;
  margin: 1rem auto;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px;
  font-family: sans-serif;
}

.calendar-header {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

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

.weekday-header {
  font-weight: bold;
  text-align: center;
  padding: 5px;
}

.calendar-cell {
  border: 1px solid #eee;
  height: 90px;
  text-align: center;
  padding: 5px;
  cursor: pointer;
}

.calendar-cell.disabled {
  background-color: #e0dfdf;
  color: #999;
  cursor: not-allowed;
}

.calendar-cell.selected {
  background-color: #cce5ff;
  border: 2px solid #004085;
}

.calendar-cell.today {
  font-weight: bold;
  border: 2px dashed #28a745;
}

.month-label {
  font-size: 12px;
}

.date-number {
  font-size: 18px;
  font-weight: bold;
}

.label {
  font-size: 0.75rem;
  color: rgb(61, 57, 62);
}

.booked {
  background-color: #f8d7da !important;
  /* Light red */
  color: #9c1624 !important;
  border: 1px solid #f5c6cb !important;
}

.print-receipt {
  padding-left: 6rem;
  justify-content: center;
  background: white;
}

.receipt {
  text-align: center;
  padding-top: 3rem;
}

.section {
  border-top: 1px solid black;
  padding-top: 15px;
  margin-top: 25px;
}

.section:first-of-type {
  border-top: none;
}

.col {
  flex: 1;
  min-width: 200px;
  margin-bottom: 10px;
}

.label {
  font-weight: bold;
}

.document-box {
  width: 100px;
  height: 80px;
  margin-top: 10px;
}

.table {
  border-collapse: collapse;
  margin-top: 10px;
}

.table td, .table th {
  padding: 8px;
}

.table th {
  text-align: left;
}

.calendar-container {
  width: 100%;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

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

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

.day {
  font-weight: bold;
  color: #333;
}

.date {
  padding: 10px;
  background: #f0f0f0;
  border-radius: 6px;
}

.date.empty {
  background: transparent;
}

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

.date {
  background: #f8f8f8;
  padding: 8px;
  border: 1px solid #ddd;
  min-height: 80px;
  font-size: 12px;
}

.date.has-event {
  background-color: #e6f7ff;
  border-color: #91d5ff;
}

.seat-info {
  font-size: 0.75rem;
  color: #333;
  margin-top: 2px;
  padding: 2px 8px;
  border-radius: 15px;
  background-color: rgb(229, 68, 68);
  color: white;
}

.empty {
  background: none;
  border: none;
}

@page {
  size: A4;
  margin: 0.5inch;
}
.w33 {
  width: 33.33%;
}

.print-logo-section {
  width: 100%;
  margin: auto 5%;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.course-div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.course-div div {
  margin: 6px;
}
.course-div .header {
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}
.course-div .content {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}

.printformDiv {
  width: 100%;
  text-transform: uppercase;
}
.printformDiv .formDiv {
  width: 90%;
  margin: 0 auto;
}
@media print {
  .printformDiv .formDiv {
    width: 100% !important;
    margin: 0 !important;
  }
  .printformDiv .print-logo-section {
    width: 100%;
    margin: 0;
  }
}
.printformDiv .printform {
  background-color: #fff;
  padding: 20px;
}
.printformDiv ul {
  list-style: none;
}
.printformDiv ul li {
  line-height: 1.5;
  font-size: 0.8rem;
}
.printformDiv label {
  display: block;
  margin-top: 10px;
}
.printformDiv .details label {
  line-height: 1;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}
.printformDiv .details label, .printformDiv .details p {
  font-size: 0.9rem;
}
.printformDiv .declaration li {
  font-size: 0.75rem;
}
.printformDiv input[type=text],
.printformDiv input[type=date],
.printformDiv input[type=email],
.printformDiv textarea,
.printformDiv select {
  width: 100%;
  padding: 8px 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}
.printformDiv textarea {
  resize: none;
}
.printformDiv .radio-group {
  display: flex;
  gap: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
}
.printformDiv .textpadding {
  padding: 0 10px;
}
.printformDiv .radio-group label {
  font-weight: normal;
}
.printformDiv .button-container {
  text-align: center;
  margin-top: 20px;
}
@media print {
  .printformDiv .no-print {
    display: none !important;
  }
  .printformDiv .declaration li {
    font-size: 0.65rem;
  }
}
.printformDiv button {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.printformDiv button:hover {
  background-color: #45a049;
}
.printformDiv fieldset {
  border: 1px solid #ddd;
  padding: 5px 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  box-shadow: none;
}
.printformDiv fieldset legend {
  font-size: 1rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .printformDiv form {
    padding: 10px;
  }
  .printformDiv input[type=text],
  .printformDiv input[type=date],
  .printformDiv input[type=email],
  .printformDiv textarea,
  .printformDiv select {
    width: 100%;
  }
  .printformDiv .radio-group {
    flex-direction: column;
  }
}

.date-container {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 10px 0;
}
.date-container .date-input {
  width: 60px;
  padding: 8px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: -3px;
}
.date-container .error-message {
  color: red;
  font-size: 0.8em;
  margin-top: 4px;
  height: 16px;
}
.date-container button {
  padding: 10px 20px;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}
.date-container button:disabled {
  background: #cccccc;
  cursor: not-allowed;
}
.date-container .input-group {
  display: flex;
  flex-direction: column;
}
.date-container .divider {
  font-size: 18px;
  color: #555;
}

/* HTML: <div class="breadcrumb"></div> */
.breadcrumb {
  --s: 20px;
  /* control the shape */
  cursor: pointer;
  line-height: 1.8;
  /* control the height */
  padding-inline: calc(var(--s) + 0.3em);
  clip-path: polygon(0 0, calc(100% - var(--s)) 0, 100% 50%, calc(100% - var(--s)) 100%, 0 100%, var(--s) 50%);
  background: #6bb8ef;
  color: white !important;
  width: -moz-fit-content;
  width: fit-content;
}

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

.spacer {
  height: 1rem;
}

.spacer2 {
  height: 2rem;
}

.spacer3 {
  height: 3rem;
}

.two-cols {
  columns: 2;
  -moz-column-gap: 10px;
       column-gap: 10px;
  -webkit-columns: 2;
  -moz-columns: 2;
}
@media (max-width: 768px) {
  .two-cols .two-columns {
    -moz-columns: 1;
         columns: 1;
  }
}

.row {
  display: flex;
  flex-direction: row;
}

.column {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 575px) {
  .mobile-column {
    flex-direction: column;
  }
}
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
}

.container {
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.box-container {
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  width: 400px;
}

.card {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin: 1rem;
}
.card .img {
  background-color: rgb(69, 197, 197);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  padding: 10px;
  line-height: 1.5;
  color: #f9f9f9;
  text-align: center;
}

.toggle-switch {
  display: inline-block;
  position: relative;
  font-family: sans-serif;
}

.toggle-checkbox {
  display: none;
}

.toggle-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 120px;
  height: 32px;
  border-radius: 20px;
  background-color: #5a58f5;
  cursor: pointer;
  color: white;
  position: relative;
  font-size: 14px;
  padding: 0 5px;
  box-sizing: border-box;
  overflow: hidden;
}

.toggle-label .enabled,
.toggle-label .disabled {
  width: 50%;
  text-align: center;
  z-index: 2;
}

.toggle-label::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  border-radius: 20px;
  background: white;
  transition: 0.3s ease;
  z-index: 1;
  left: 0;
}

.circle-grey {
  border-radius: 50%;
  background: #f0f0f0;
  padding: 1.5rem 1rem;
  text-align: center;
}

.details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.m-1 {
  margin: 1rem;
}

.m-2 {
  margin: 2rem;
}

.ml-1 {
  margin-left: 0.5rem;
}

.ml-2 {
  margin-left: 1rem;
}

.shadow5 {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.shadow3 {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.file-input-hidden {
  display: none;
  /* Completely hide input */
}

.uploadSection .upload-documents {
  text-align: center;
  margin-top: 20px;
}
.uploadSection .upload-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
}
.uploadSection .upload-box {
  width: 25%;
}
@media screen and (max-width: 575px) {
  .uploadSection .upload-box {
    width: 90%;
    margin: 10px 5%;
  }
}
.uploadSection .upload-area {
  border: 2px dashed #ccc;
  padding: 20px;
  cursor: pointer;
  background-color: #f5fafd;
  border-radius: 10px;
}
.uploadSection .upload-area i {
  font-size: 24px;
  color: #007bff;
}
.uploadSection .upload-area p {
  margin-top: 10px;
  font-weight: bold;
}
.uploadSection button {
  background-color: navy;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.error-messages {
  background-color: rgb(234, 170, 170);
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 10px;
  width: 60%;
  margin: 1rem auto;
}
.error-messages h1 {
  color: rgb(191, 50, 50) !important;
}

.error-messages ul {
  padding-left: 20px;
  color: #333;
}

.error-messages li {
  margin-bottom: 5px;
  text-transform: capitalize;
  list-style-type: decimal;
}

.chip {
  border-radius: 20px;
  padding: 0.5rem;
  margin: 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
}

.leftalign {
  text-align: left;
}

.centeralign {
  text-align: center;
}

.rightalign {
  text-align: right;
}

.step {
  display: inline-block;
  font-weight: bold;
  font-size: 1rem;
  background-color: rgb(204, 31, 31);
  border-radius: 50%;
  color: #fff;
  padding: 3px;
  width: 30px;
  height: 30px;
  text-align: center;
}

.bottom-border {
  border-bottom: 1px solid #0a3c7b;
}

.details-sidebar {
  height: 100%;
  background-color: #f9f9f9;
  padding: 20px;
  font-weight: 100;
}
.details-sidebar span {
  font-weight: 400;
}
.details-sidebar strong {
  font-weight: 500 !important;
}
.details-sidebar h5 {
  font-size: 1rem;
  color: #0a3c7b;
}
.details-sidebar fieldset {
  border: none;
  border-top: 2px solid #ccc;
  margin: 0.5rem;
  margin-bottom: 1.5rem;
  background-color: transparent;
  padding: 0.5rem 1rem;
  box-shadow: none;
  border-radius: 0;
}
.details-sidebar fieldset p {
  font-size: 0.9rem;
  padding-left: 0.5rem;
}

.list-none {
  text-align: left;
}
.list-none li {
  list-style: none;
  line-height: 2;
}

.small {
  font-size: 0.85rem !important;
  color: #666;
  font-family: Verdana;
}

.labelText {
  font-size: 0.75rem !important;
  color: #0056b3;
}

.admin-toggle-container {
  max-height: -moz-fit-content;
  max-height: fit-content;
  display: inline-flex;
  border: 2px solid #333;
  border-radius: 2rem;
  overflow: hidden;
  font-family: sans-serif;
}

.admin-toggle-option {
  padding: 0.25rem 1rem;
  cursor: pointer;
  background: #eee;
  color: #333;
  transition: background 0.3s, color 0.3s;
}

.admin-toggle-option.active {
  background: #5965a9;
  color: white;
}

.lowercase {
  text-transform: lowercase;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.column-container {
  -moz-columns: 2;
       columns: 2;
  /* column-width column-count */
}

.search-contact-in {
  font-weight: 100;
  padding-top: 11px;
  font-size: 19px;
}

.border1 {
  border: 1px solid #ccc;
  border-radius: 5px;
}

.iconsize {
  width: 2.5rem;
  height: 2.5rem;
}

.linkbutton {
  background-color: #0a3c7b;
  color: #fff;
  padding: 10px 20px;
}

.daycard {
  border-radius: 50%;
  margin: 0.5rem auto;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: rgb(175, 66, 66);
  color: #fff;
  text-align: center;
}

.card-ul {
  padding: 1rem 2rem;
  margin: 0;
}
.card-ul li {
  line-height: 2;
}

.padding10 {
  padding: 10px;
}

.margin10 {
  margin: 10px;
}

.marginleft10 {
  margin-left: 10px;
}

.w48 {
  width: 48%;
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 99;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  /* Modal Content/Box */
  /* The Close Button */
}
.modal .modalcontent {
  background-color: #fefefe;
  margin: 2% auto;
  /* 15% from the top and centered */
  padding: 2rem;
  border: 1px solid #888;
  width: -moz-fit-content;
  width: fit-content;
  /* Could be more or less, depending on screen size */
}
.modal .close {
  color: #aaa;
  float: right;
  font-weight: bold;
  float: right;
  width: 60px;
  height: auto;
}
.modal .close:hover,
.modal .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.modal p {
  text-align: justify;
}

.showModal {
  display: block !important;
}/*# sourceMappingURL=style.css.map */