* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}

/*
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  overflow-y: scroll;
  padding-top: 40%;
}

.form-container {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  width: 620px;
  height: fit-content;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.close-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #888;
  transition: color 0.3s;
}

.close-icon:hover {
  color: #333;
}

.form-container form {
  display: flex;
  flex-direction: column;
}

/* .form-container input {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
} 

.disabled-overlay {
  filter: blur(3px) brightness(0.7);
  pointer-events: none;
}

.page-disabled #formOverlay,
.page-disabled #formOverlay * {
  filter: none;
  pointer-events: auto;
}*/

/* From Uiverse.io by andrew-demchenk0 
.button {
  position: relative;
  width: 150px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: 1px solid #34974d;
  background-color: #3aa856;
}

.button,
.button__icon,
.button__text {
  transition: all 0.3s;
}

.button .button__text {
  transform: translateX(30px);
  color: #fff;
  font-weight: 600;
}

.button .button__icon {
  position: absolute;
  transform: translateX(109px);
  height: 100%;
  width: 39px;
  background-color: #34974d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button .svg {
  width: 30px;
  stroke: #fff;
}

.button:hover {
  background: #34974d;
}

.button:hover .button__text {
  color: transparent;
}

.button:hover .button__icon {
  width: 148px;
  transform: translateX(0);
}

.button:active .button__icon {
  background-color: #2e8644;
}

.button:active {
  border: 1px solid #2e8644;
}

.sch-col-show-box {
  max-height: 70vh;
  min-height: 0;
  padding: 5px 0;
  width: 900px;
  overflow-y: auto;
}
*/
#previewImage {
  display: none;
  /* Initially hide the image */
}

/* ----------- message page ki css --------- */
#formDiv {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

#formDiv.show {
  display: block;
  opacity: 1;
}

/* ----------- message page ki css --------- */

@media (max-width: 1024px) {
  .sch-col-show-box {
    width: 100%;
  }
}


th,
td {
  border: 1px solid #fbbc6b;
  padding: 4px;
  text-align: center;
  font-size: 12px;
  border-bottom: none;
  border-bottom: none;
}

th {
  background-color: #ffb245;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 10;
}

.section-title {
  background-color: #ffb13d;
  font-weight: bold;
  text-align: center;
}

.total-cell {
  background-color: #fad74c;
  font-weight: bold;
}

/* login css code -----  */
body {
  margin: 0;
  font-family: sans-serif;
  background-color: #f9fafb;
}

.main-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.form-box {
  max-width: 400px;
  width: 100%;
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-box h2 {
  text-align: center;
  color: #1f2937;
  font-size: 1.5rem;
  font-weight: bold;
}

.form-group {
  margin-top: 1.5rem;
}

label {
  display: block;
  color: #1f2937;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper input {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  font-size: 0.875rem;
  color: #1f2937;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  outline-color: #2563eb;
}

.input-wrapper svg {
  position: absolute;
  right: 1rem;
  width: 1rem;
  height: 1rem;
  fill: #bbb;
  stroke: #bbb;
  cursor: pointer;
}

.submit-btn {
  margin-top: 2rem;
}

.submit-btn button {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: #2563eb;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn button:hover {
  background-color: #1d4ed8;
}

.alert {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 50;
  padding: 1rem;
  border-top: 4px solid;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.alert.success {
  background-color: #d1fae5;
  color: #065f46;
  border-color: #10b981;
}

.alert.error {
  background-color: #fee2e2;
  color: #991b1b;
  border-color: #ef4444;
}

@media (max-width: 480px) {
  .form-box {
    padding: 1.5rem;
    border-radius: 0.75rem;
  }

  .form-box h2 {
    font-size: 1.25rem;
  }

  .input-wrapper input {
    font-size: 0.85rem;
    padding: 0.65rem 2.2rem 0.65rem 0.9rem;
  }

  .submit-btn button {
    font-size: 0.85rem;
    padding: 0.65rem 0.9rem;
  }
}

/* asider css code --------- */

