:root {
  color-scheme: light;
  font-family: 'Inter', 'Noto Sans JP', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  font-family: 'Inter', 'Noto Sans JP', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-select,
.form-input,
textarea.form-input {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgb(226 232 240 / 1);
  background-color: white;
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-select:focus,
.form-input:focus,
textarea.form-input:focus {
  outline: none;
  border-color: rgb(99 102 241 / 1);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-label {
  display: block;
  font-weight: 600;
  color: rgb(71 85 105 / 1);
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.form-checkbox {
  width: 1rem;
  height: 1rem;
  border-radius: 0.375rem;
  border: 1px solid rgb(203 213 225 / 1);
}

.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.2rem;
  background: linear-gradient(135deg, #4c6ef5, #5f3dc4);
  color: white;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -12px rgba(79, 70, 229, 0.4);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-approve,
.btn-reject {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-approve {
  background-color: rgb(16 185 129 / 0.12);
  color: rgb(5 150 105 / 1);
}

.btn-approve:hover {
  background-color: rgb(16 185 129 / 0.18);
}

.btn-reject {
  background-color: rgb(248 113 113 / 0.12);
  color: rgb(220 38 38 / 1);
}

.btn-reject:hover {
  background-color: rgb(248 113 113 / 0.2);
}

.card {
  border: 1px solid rgb(226 232 240 / 1);
  border-radius: 1rem;
  padding: 1.25rem;
  background-color: #fff;
  box-shadow: 0 12px 32px -24px rgba(15, 23, 42, 0.3);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  font-weight: 600;
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
}

.table thead tr {
  background-color: rgb(241 245 249 / 1);
}

.table th,
.table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgb(226 232 240 / 1);
}

.empty-state {
  border: 1px dashed rgb(203 213 225 / 1);
  border-radius: 1rem;
  padding: 2rem 1rem;
  text-align: center;
  color: rgb(100 116 139 / 1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.empty-state i {
  font-size: 1.5rem;
  color: rgb(148 163 184 / 1);
}

.toast {
  position: fixed;
  bottom: 2rem;
  right: 50%;
  transform: translateX(50%);
  padding: 0.9rem 1.3rem;
  border-radius: 9999px;
  font-weight: 600;
  color: white;
  z-index: 1000;
  min-width: 240px;
  text-align: center;
  box-shadow: 0 20px 40px -20px rgba(15, 23, 42, 0.45);
}

.toast-success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.toast-error {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
}

.toast-info {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.hidden {
  display: none !important;
}
