body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  display: flex;
  /*justify-content: space-around;*/
  align-items: flex-start;
  flex-wrap: wrap;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-overlay .overlay-content {
  text-align: center;
}

.loading-overlay .spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

.loading-overlay p {
  margin-left: -55px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}

.main-container {
  display: flex;
  justify-content: space-between;
}

.box {
  width: 48%; /* Adjust as needed */
  background-color: #f0f0f0;
  padding: 10px;
  box-sizing: border-box;
}

.container {
  margin: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  flex-grow: 1;
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.max-width-container {
  width: 97%;
}

.container h1 {
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
  width: 100%;
}

.container h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.containerSmall {
  margin-bottom: 20px;
}

.textBox {
  height: 40px;
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.textArea {
  height: 200px;
  width: calc(100% - 16px);
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  margin-bottom: 10px;
}

input[type="file"] {
  width: calc(100% - 16px);
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  margin-bottom: 10px;
}

.label {
  font-size: 18px;
  margin-bottom: 8px;
  display: block;
}

.checkbox-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  margin-bottom: 10px;
}

.checkbox-column {
  width: calc(20% - 20px);
}

button {
  background-color: #4caf50;
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

  button:hover {
    background-color: #45a049;
  }

  button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }

a {
  color: #fff;
  text-decoration: none;
}

.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: calc(100% - 20px); /* Adjusted width */
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  position: relative; /* Added position */
}

  .accordion::after {
    content: '\25B8'; /* Unicode character for a right-pointing triangle */
    position: absolute;
    right: 10px;
    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

.active::after {
  content: '\25BE'; /* Unicode character for a down-pointing triangle */
}

.panel {
  padding: 18px 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

th, td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

th {
  background-color: #f2f2f2;
}

  td:nth-child(1), th:nth-child(1) {
    width: 4%; /* Adjusted width for columns 1 and 2 */
  }

  td:nth-child(2), th:nth-child(2),
  td:nth-child(3), th:nth-child(3) {
    width: 8%; /* Adjusted width for columns 1 and 2 */
  }

  td:nth-child(4), th:nth-child(4),
  td:nth-child(5), th:nth-child(5) {
    width: 40%; /* Adjusted width for columns 3 and 4 */
  }

p {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

