body {
  color: #021733;
  font-weight: 400;
  font-family: "Red Hat Display", sans-serif;
  scroll-behavior: smooth;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(180deg, #17164f 0%, #023171 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 100%;
  height: 100%;
  max-width: 400px;
  max-height: 350px;
}

.header {
  font-size: 22px;
  padding: 25px;
  margin: 0;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  color: #021733;
  font-weight: 500;
  justify-content: center;
}

.lable {
  font-size: 16px;
  display: flex;
  align-items: center;
  color: #021733;
  /* font-weight: 500; */
}

.inputContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  padding: 20px;
}

/* input-field */
.input-label {
  display: block;
  margin-bottom: 4px;
}

.input-field {
  padding: 0.5rem;
  width: 100%;
  padding-right: 35px; /* space for the eye icon */
  box-sizing: border-box;
  border: 1px solid #ccc;
  transition: border 0.3s ease;
}

.input-field:focus {
  border: 1px solid #2f95ff;
  outline: none;
}

.input-field.error {
  border: 1px solid #d53b45;
  outline: none;
}

.input-field[readonly] {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
/* Buttons */
.btn {
  padding: 8px 16px;
  cursor: pointer;
}
.btn-primary {
  background-color: #152e50;
  color: white;
}
.btn-primary:hover {
  background-color: #3a5374;
}

.input-wrapper {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 10px;
  cursor: pointer;
  user-select: none;
}

.eye-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  user-select: none;
  font-size: 16px;
}

.loading {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

.spinner {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid #152e50;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#downloadZipBtn:disabled {
  background-color: #ccc;
  color: black;
  cursor: not-allowed;
  opacity: 0.6;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table th,
table td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

table th {
  background-color: #f4f4f4;
}

.table-container {
  width: 50%;
  margin: 0 auto;
}

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