/* =====================================================
   Doctor Appointment System CSS
   Modern Medical UI Design
===================================================== */

body {
  font-family: "Segoe UI", Arial, sans-serif;

  background: #f5f9ff;

  color: #333;
}

/* Navbar */

.navbar-brand {
  font-size: 22px;
}

/* Hero Section */

.hero-section {
  padding: 60px 0;
}

/* Booking Card */

.booking-card {
  background: white;

  border-radius: 25px;

  padding: 30px;
}

/* Cards */

.card {
  border-radius: 18px;
}

/* Calendar */

.calendar-table {
  text-align: center;
}

.calendar-table th {
  background: #0d6efd;

  color: white;

  padding: 12px;
}

.calendar-table td {
  padding: 8px;
}

.calendar-day {
  width: 42px;

  height: 42px;

  border-radius: 50%;

  border: none;

  background: #eaf3ff;

  color: #0d6efd;

  transition: 0.3s;
}

.calendar-day:hover {
  background: #0d6efd;

  color: white;
}

.today-date {
  border: 2px solid #0d6efd;
}

.selected-date {
  background: #0d6efd !important;

  color: white !important;
}

.disabled-date {
  background: #eee;

  color: #aaa;

  cursor: not-allowed;

  pointer-events: none;
}

/* Time Slots */

.slot-btn {
  border-radius: 20px;

  min-width: 110px;
}

.slot-btn:hover {
  background: #0d6efd;

  color: white;
}

/* Modal */

.modal-content {
  border-radius: 20px;

  border: none;
}

/* Dashboard */

.dashboard-card {
  border: none;

  border-radius: 20px;

  transition: 0.3s;
}

.dashboard-card:hover {
  transform: translateY(-5px);
}

/* Forms */

.form-control,
.form-select {
  border-radius: 12px;

  padding: 12px;
}

.btn {
  border-radius: 12px;

  padding: 10px 20px;
}

/* Mobile Responsive */

@media (max-width: 768px) {
  .hero-section {
    padding: 30px 0;
  }

  .display-5 {
    font-size: 32px;
  }

  .booking-card {
    padding: 20px;
  }

  .calendar-day {
    width: 35px;

    height: 35px;

    font-size: 13px;
  }
}
