.error-message {
  color: #f44336;
  font-size: 14px;
  font-weight: 100;
  font-style: italic;
  margin: 1px !important;
}

.success-message {
  color: #4caf50;
  font-size: 14px;
  font-weight: 100;
  font-style: italic;
  margin: 1px !important;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.time-alert {
  background-color: #ff4d4d !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
  animation: blinkEffect 1s infinite;
}
.time-alert div {
  color: white !important;
  font-weight: bold;
}

@keyframes blinkEffect {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
* {
  margin: 0;
  padding: 0;
  user-select: none;
  box-sizing: border-box;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #F5F5F5;
  border-radius: 10px;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #FFF;
  background-image: -webkit-gradient(linear, 40% 0%, 75% 84%, from(#4D9C41), to(#19911D), color-stop(0.6, #54DE5D));
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

.sidebar {
  width: 250px;
  height: 100vh;
  background-color: #e0f2e9;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
}
.sidebar h2 {
  margin-bottom: 20px;
}
.sidebar a {
  display: block;
  padding: 10px;
  margin-bottom: 10px;
  color: #333;
  text-decoration: none;
}
.sidebar a:hover {
  background-color: #ccc;
}

.content {
  margin-left: 270px;
  padding: 20px;
}

.section {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.section h2 {
  margin-top: 0;
}

.exam-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.exam-form .form-left,
.exam-form .form-right,
.exam-form .form-full-width {
  width: 100%;
  margin-bottom: 20px;
}
.exam-form .form-row {
  display: flex;
  justify-content: space-between;
}
.exam-form .form-row .form-half {
  width: 48%;
  margin-bottom: 20px;
}
.exam-form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}
.exam-form input[type=text],
.exam-form input[type=datetime-local],
.exam-form input[type=number],
.exam-form .specialty-select,
.exam-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.exam-form textarea {
  resize: vertical;
  height: 100%;
  min-height: 120px;
}
.exam-form .form-actions {
  display: flex;
  justify-content: space-between;
}

.button {
  padding: 10px 20px;
  background-color: #4caf50;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  text-align: center;
  border: none;
  cursor: pointer;
}
.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.button.reset-button {
  background-color: #f44336;
}
.button.reset-button:hover {
  background-color: #d32f2f;
}
.button.submit-button:hover {
  background-color: #45a049;
}
.button.edit-button {
  background-color: #2196f3;
}
.button.edit-button:hover {
  background-color: #1976d2;
}
.button.add-question-button {
  background-color: #b0bec5;
}
.button.add-question-button:hover {
  background-color: #90a4ae;
}
.button.delete-button {
  background-color: #f44336;
}
.button.delete-button:hover {
  background-color: #d32f2f;
}

.pending {
  background-color: orange;
  color: #fff;
}

.completed {
  background-color: #0b5394;
  color: #fff;
}

.active {
  background-color: green;
  color: #fff;
}

.canceled {
  background-color: red;
  color: #fff;
}

.table-wrapper {
  width: 100%;
  overflow: auto;
}
.table-wrapper .exam-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.table-wrapper .exam-table th,
.table-wrapper .exam-table td {
  min-width: 150px;
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.table-wrapper .exam-table th {
  background-color: #f2f2f2;
}
.table-wrapper .exam-table .status-select {
  width: auto;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
    padding: 15px;
    text-align: center;
  }
  .sidebar h2 {
    font-size: 20px;
  }
  .sidebar a {
    display: inline-block;
    margin: 5px;
    padding: 8px 12px;
  }
  .content {
    margin-left: 0;
    padding: 15px;
  }
  .section {
    padding: 15px;
  }
  .exam-form .form-row {
    flex-direction: column;
  }
  .exam-form .form-row .form-half {
    width: 100%;
  }
  .exam-form .form-actions {
    flex-direction: column;
    gap: 10px;
  }
  .exam-form .form-actions .button {
    width: 100%;
  }
  .table-wrapper .exam-table {
    font-size: 14px;
    overflow-x: auto;
    display: block;
  }
  .table-wrapper .exam-table table {
    width: 100%;
  }
  .table-wrapper .exam-table th,
  .table-wrapper .exam-table td {
    padding: 8px;
  }
  .table-wrapper .exam-table .status-select {
    width: 100%;
  }
  .button {
    font-size: 16px;
    width: 100%;
    padding: 12px;
  }
}

/*# sourceMappingURL=add-exam.css.map */
