body {
  font-family: "Nokora", sans-serif;
  transition: background-color 0.4s ease-in-out;
  background-color: #f9fafb;
  color: #1f2937;
}

.dark body {
  background-color: #1f2937;
  color: #e0e0e0;
}

.input-field-custom {
  background-color: #ffffff;
  color: #1f2937;
  border: 1px solid #cbd5e1;
}

.dark .input-field-custom {
  background-color: #374151;
  color: white;
  border: 1px solid #4b5563;
}

.card-mimic {
  background-color: #374151;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2),
    0 4px 6px -2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.input-field-custom {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out,
    background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  background-color: #374151;
  color: white;
}

.input-field-custom:focus {
  outline: none;
  border-color: #4ade80;
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.5);
}

.button-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out;
  cursor: pointer;
}

.button-primary-custom {
  background-color: #16a34a;
  color: white;
}

.button-primary-custom:hover {
  background-color: #15803d;
}

.button-outline-custom {
  background-color: #1f2937;
  border: 1px solid #374151;
  color: #cbd5e1;
}

.button-outline-custom:hover {
  background-color: #374151;
}

.button-custom:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.tabs-list-custom {
  display: flex;
  width: 100%;
  background-color: transparent;
  height: 3.5rem;
  border-bottom: 1px solid #4b5563;
}

.tabs-trigger-custom {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  font-weight: 500;
  color: #94a3b8;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease-in-out;
}

.tabs-trigger-custom.active {
  color: #4ade80;
}

.tabs-trigger-custom.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #4ade80;
}

.checkbox-custom {
  height: 1rem;
  width: 1rem;
  border: 1px solid #4b5563;
  border-radius: 0.25rem;
  background-color: #374151;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.checkbox-custom:checked {
  background-color: #4ade80;
  border-color: #4ade80;
}

.checkbox-custom:checked::before {
  content: "✔";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.75rem;
  color: white;
}

.toast-message {
  position: fixed;
  top: 1rem;
  right: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  color: white;
  font-size: 0.875rem;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.toast-message.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-message.error {
  background-color: #ef4444;
}

.toast-message.success {
  background-color: #16a34a;
}
