body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f9;
  color: #333;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

h1,
h2 {
  color: #2c3e50;
}

.card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 15px;
}

select,
input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type='checkbox'],
input[type='radio'] {
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 5px;
}

.radio-label {
  font-weight: normal;
  cursor: pointer;
}

label {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  font-weight: bold;
}

button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary {
  background-color: #3498db;
  color: white;
}

.btn-success {
  background-color: #2ecc71;
  color: white;
}

.btn-danger {
  background-color: #e74c3c;
  color: white;
  padding: 5px 10px;
  font-size: 14px;
}

.table-responsive {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

th,
td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #f8f9fa;
}

.result-item {
  padding: 10px;
  margin-bottom: 5px;
  border-radius: 4px;
}

.result-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.result-fail {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.final-status {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  padding: 15px;
  margin-top: 20px;
  border-radius: 8px;
}

.status-ok {
  background-color: #28a745;
  color: white;
}

.status-no {
  background-color: #dc3545;
  color: white;
}

/* Toast Notification */
#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.toast {
  background-color: #2ecc71;
  color: white;
  padding: 15px 25px;
  margin-bottom: 10px;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}
