* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f9fafb;
  min-height: 100vh;
}

.min-h-screen {
  min-height: 100vh;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.p-4 {
  padding: 1rem;
}

.max-w-md {
  max-width: 28rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.bg-blue-600 {
  background-color: #2563eb;
}

.text-white {
  color: white;
}

.rounded-t-lg {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.gap-3 {
  gap: 0.75rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.font-semibold {
  font-weight: 600;
}

.text-blue-100 {
  color: #dbeafe;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.bg-white {
  background-color: white;
}

.rounded-b-lg {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.border-b {
  border-bottom: 1px solid #e5e7eb;
}

.text-gray-800 {
  color: #1f2937;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.justify-between {
  justify-content: space-between;
}

.text-gray-600 {
  color: #4b5563;
}

.font-medium {
  font-weight: 500;
}

.gap-2 {
  gap: 0.5rem;
}

.w-4 {
  width: 1rem;
}

.h-4 {
  height: 1rem;
}

.w-2 {
  width: 0.5rem;
}

.h-2 {
  height: 0.5rem;
}

.bg-blue-500 {
  background-color: #3b82f6;
}

.rounded-full {
  border-radius: 9999px;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.items-start {
  align-items: flex-start;
}

.flex-1 {
  flex: 1 1 0%;
}

.text-blue-500 {
  color: #3b82f6;
}

.text-orange-500 {
  color: #f97316;
}

.mt-1 {
  margin-top: 0.25rem;
}

.text-blue-600 {
  color: #2563eb;
}

.text-right {
  text-align: right;
}

.font-bold {
  font-weight: 700;
}

.text-gray-500 {
  color: #6b7280;
}

.bg-orange-50 {
  background-color: #fff7ed;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-orange-600 {
  color: #ea580c;
}

.text-green-500 {
  color: #22c55e;
}

.w-full {
  width: 100%;
}

.bg-orange-500 {
  background-color: #f97316;
}

.hover\:bg-orange-600:hover {
  background-color: #ea580c;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.hover\:bg-blue-700:hover {
  background-color: #1d4ed8;
}

.p-1 {
  padding: 0.25rem;
}

.relative {
  position: relative;
}

.pl-10 {
  padding-left: 2.5rem;
}

.text-gray-400 {
  color: #9ca3af;
}

.absolute {
  position: absolute;
}

.left-3 {
  left: 0.75rem;
}

.top-3 {
  top: 0.75rem;
}

.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-4 {
  gap: 1rem;
}

.border-t {
  border-top: 1px solid #e5e7eb;
}

.text-green-500 {
  color: #22c55e;
}

.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.flex.items-center.justify-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center {
  text-align: center;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.w-16 {
  width: 4rem;
}

.h-16 {
  height: 4rem;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.mb-4 {
  margin-bottom: 1rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-green-600 {
  color: #16a34a;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.bg-green-500 {
  background-color: #22c55e;
}

.w-12 {
  width: 3rem;
}

.h-12 {
  height: 3rem;
}

.text-green-100 {
  color: #dcfce7;
}

.p-8 {
  padding: 2rem;
}

.hidden {
  display: none;
}

/* Button styles */
button {
  border: none;
  cursor: pointer;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: background-color 0.2s;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Input styles */
input {
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  width: 100%;
}

input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Label styles */
label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #374151;
}
