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

body {
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  background-color: #f9fafb;
}

/* Container - max-w-6xl mx-auto */
.container {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  font-family: "Poppins", sans-serif;
}

/* Progress Indicator - flex items-center justify-center mb-8 */
.progress-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

/* flex items-center space-x-4 */
.progress-steps {
  display: flex;
  align-items: center;
}

.progress-steps > * + * {
  margin-left: 1rem;
}

/* flex items-center */
.progress-step {
  display: flex;
  align-items: center;
}

/* w-8 h-8 rounded-full flex items-center justify-center */
.progress-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-circle.completed {
  background-color: #10b981;
}

.progress-circle.inactive {
  background-color: #d1d5db;
}

/* w-3 h-3 bg-white rounded-full */
.progress-dot {
  width: 0.75rem;
  height: 0.75rem;
  background-color: #ffffff;
  border-radius: 9999px;
}

/* ml-2 text-sm font-medium */
.progress-label {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.progress-label.active {
  color: #374151;
}

.progress-label.completed {
  color: #059669;
}

.progress-label.inactive {
  color: #9ca3af;
}

/* w-24 h-px bg-gray-300 */
.progress-line {
  width: 6rem;
  height: 1px;
  background-color: #d1d5db;
}

/* Logo - text-center mb-8 */
.logo-container {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  max-height: 100px;
  margin-left: auto;
  margin-right: auto;
}

/* Main Grid */
.main-grid {
  display: grid;
  gap: 2rem;
}

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

.main-grid.single-column {
  display: flex;
  justify-content: center;
}

/* Card - bg-gradient-to-br from-[#ED4A4D] to-[#D63E41] text-white */
.calendar-card {
  color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

/* CardContent - p-6 */
.calendar-content {
  padding: 1.5rem;
}

/* text-center mb-6 */
.calendar-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* w-16 h-16 bg-white rounded-lg mx-auto mb-4 overflow-hidden */
.property-image {
  width: 4rem;
  height: 4rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* text-xl font-semibold mb-2 */
.property-title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: "Poppins", sans-serif;
}

/* flex items-center justify-center space-x-4 */
.month-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
}

.month-navigation > * + * {
  margin-left: 1rem;
}

/* p-1 hover:bg-[#D63E41] rounded */
.nav-button {
  padding: 0.25rem;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  border-radius: 0.25rem;
  transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Poppins", sans-serif;
}

/* text-lg font-medium */
.month-year {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

/* grid grid-cols-7 gap-1 mb-2 */
.calendar-days-header {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

/* text-center text-xs font-medium py-2 */
.day-header {
  text-align: center;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-family: "Poppins", sans-serif;
}

/* grid grid-cols-7 gap-1 */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.25rem;
}

/* aspect-square flex items-center justify-center text-sm rounded-full */
.calendar-day {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Poppins", sans-serif;
}

.calendar-day.selected {
  background-color: #ffffff;
  font-weight: 600;
}

.calendar-day:disabled {
  cursor: not-allowed;
}

.calendar-day:disabled:hover {
  background-color: transparent;
}

.calendar-day.empty {
  visibility: hidden;
}

/* Form Section - space-y-6 */
.form-section {
  display: flex;
  flex-direction: column;
}

.form-section > * + * {
  margin-top: 1.5rem;
}

.form-section.centered {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* text-lg font-semibold text-gray-800 mb-2 */
.section-title {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
  font-family: "Poppins", sans-serif;
}

/* text-sm text-gray-600 mb-4 */
.section-subtitle {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #4b5563;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
}

/* Time Slots - space-y-2 */
.time-slots {
  display: flex;
  flex-direction: column;
}

.time-slots > * + * {
  margin-top: 0.5rem;
}

/* Button variant="outline" - w-full justify-start text-left border-gray-200 text-gray-700 hover:bg-gray-50 */
.time-slot {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  text-align: left;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  background-color: #ffffff;
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Poppins", sans-serif;
}

.time-slot:hover {
  background-color: #f9fafb;
}

/* Form Groups - space-y-4 */
.form-content {
  display: flex;
  flex-direction: column;
}

.form-content > * + * {
  margin-top: 1rem;
}

/* grid grid-cols-2 gap-4 */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

/* block text-sm font-medium text-gray-700 mb-1 */
.form-label {
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.25rem;
  font-family: "Poppins", sans-serif;
}

/* w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-[#ED4A4D] focus:border-[#ED4A4D] */
.form-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #111827;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.form-input:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  padding: 0.5rem 1rem;
  font-family: "Poppins", sans-serif;
}

/* Button variant="outline" */
.button-outline {
  background-color: #ffffff;
  color: #374151;
  border: 1px solid #d1d5db;
}

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

/* bg-[#ED4A4D] hover:bg-[#D63E41] text-white */
.button-primary {
  color: #ffffff;
}

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

/* flex space-x-4 */
.button-row {
  display: flex;
}

.button-row > * + * {
  margin-left: 1rem;
}

/* flex-1 */
.button-full {
  flex: 1 1 0%;
}

/* Success Section - text-center space-y-6 */
.success-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.success-container > * + * {
  margin-top: 1.5rem;
}

/* w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mx-auto */
.success-icon {
  width: 4rem;
  height: 4rem;
  background-color: #dcfce7;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

/* text-2xl font-bold text-gray-800 mb-2 */
.success-title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
  font-family: "Poppins", sans-serif;
}

/* text-gray-600 mb-4 */
.success-subtitle {
  color: #4b5563;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
}

/* bg-gray-50 rounded-lg p-4 text-left space-y-2 */
.booking-details {
  background-color: #f9fafb;
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: left;
  font-family: "Poppins", sans-serif;
}

.booking-details > * + * {
  margin-top: 0.5rem;
}

/* Footer - mt-16 pt-8 border-t border-gray-200 */
.footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

/* max-w-4xl mx-auto text-center space-y-6 */
.footer-content {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.footer-content > * + * {
  margin-top: 1.5rem;
}

/* text-xs text-gray-500 space-y-3 */
.footer-text {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #6b7280;
  font-family: "Poppins", sans-serif;
}

.footer-text > * + * {
  margin-top: 0.75rem;
}

/* flex flex-wrap justify-center gap-4 pt-4 border-t border-gray-200 */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Poppins", sans-serif;
}

.footer-links span {
  font-family: "Poppins", sans-serif;
}

/* Utility Classes */
.hidden {
  display: none;
}

/* Responsive Design - lg:grid-cols-2 */
@media (min-width: 1024px) {
  .main-grid.two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1023px) {
  .main-grid.two-column {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  body {
    padding: 0.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .button-row {
    flex-direction: column;
  }
  .button-row > * + * {
    margin-left: 0;
    margin-top: 1rem;
  }
}
