/* Layout & container */
.max-w-xl {
  max-width: 36rem; /* 576px */
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.p-6 {
  padding: 1.5rem;
}
.bg-white {
  background-color: #ffffff;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
              0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 1.5rem;
}

.justify-around {
  justify-content: space-around;
}

/* Typography */

.font-bold {
  font-weight: 700;
}
.text-gray-900 {
  color: #111827;
}
.text-gray-700 {
  color: #374151;
}

/* Buttons */
.bg-blue-600 {
  background-color: #2563eb;
}
.hover\:bg-blue-700:hover {
  background-color: #1d4ed8;
}
.text-white {
  color: #ffffff;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Progress Bars */
.bg-gray-200 {
  background-color: #e5e7eb;
}
.rounded-full {
  border-radius: 9999px;
}
.h-3 {
  height: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}

/* Inside progress bar */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}

/* Color variants */
.bg-green-500 {
  background-color: #22c55e;
}
.bg-blue-500 {
  background-color: #3b82f6;
}
.bg-yellow-500 {
  background-color: #eab308;
}
.bg-red-500 {
	background-color: #fe3a3a;
}

/* Visibility toggles */
.hidden {
  display: none;
}
.block {
  display: block;
}
