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

:root {
  --primary-color: #1a73e8;
  --primary-dark: #1557b0;
  --primary-light: #4285f4;
  --white: #ffffff;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f5f7fa;
  --border-color: #e0e0e0;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 16px rgba(26, 115, 232, 0.2);
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --info-color: #17a2b8;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header.header {
  height: auto;
  width: 100%;
  border-bottom: 2px solid var(--border-color);
  background-color: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.header.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-top {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
  padding: 5px 0;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

nav.navbar {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 60px;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin: 0;
}

.nav-list-item {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 10px 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  display: flex;
  padding: 10px 0;
}

.nav-list a:hover {
  color: var(--primary-color);
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-list a:hover::after {
  width: 100%;
}

.header-btn {
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.btn {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.btn-login {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  background-color: transparent;
}

.btn-login:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-register {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}

.btn-register:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Hero Section - Slideshow */
.hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
  animation: fadeIn 1s ease-in-out;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.slide-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.8s ease-out;
}

.slide-content p {
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  animation: slideUp 1s ease-out;
}

.btn-cta {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.4);
  animation: slideUp 1.2s ease-out;
}

.btn-cta:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.5);
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  border: none;
  padding: 20px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 3;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-btn.prev {
  left: 30px;
}

.slide-btn.next {
  right: 30px;
}

.slide-btn:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.slide-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: var(--white);
  transform: scale(1.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Quick Stats Section */
.quick-stats-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 40px 0;
  margin-top: -5px;
}

.quick-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.quick-stat-item {
  text-align: center;
  color: var(--white);
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-stat-item:last-child {
  border-right: none;
}

.quick-stat-number {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 5px;
}

.quick-stat-label {
  font-size: 16px;
  opacity: 0.9;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.hero-section {
  padding: 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: 2px;
}

/* Services Section */
.services-section {
  background-color: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.service-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.service-price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 15px;
  padding: 8px 16px;
  background-color: rgba(26, 115, 232, 0.1);
  border-radius: 20px;
  display: inline-block;
}

/* Wards Section */
.wards-section {
  background-color: var(--white);
}

.wards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.ward-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.ward-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.ward-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
}

.ward-header h3 {
  font-size: 20px;
  color: var(--text-dark);
  font-weight: 600;
}

.ward-type {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.ward-type.urgent {
  background-color: var(--danger-color);
}

.ward-info {
  margin-bottom: 20px;
}

.ward-info p {
  margin-bottom: 8px;
  color: var(--text-light);
  font-size: 14px;
}

.ward-info strong {
  color: var(--text-dark);
}

.ward-info .available {
  color: var(--success-color);
  font-weight: 600;
}

.ward-info .warning {
  color: var(--warning-color);
  font-weight: 600;
}

.ward-info .critical {
  color: var(--danger-color);
  font-weight: 600;
}

.ward-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ward-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

/* Doctors Section */
.doctors-section {
  background-color: var(--bg-light);
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.doctor-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.doctor-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.doctor-avatar {
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.doctor-card:hover .doctor-avatar {
  border-color: var(--primary-dark);
  transform: scale(1.05);
}

.doctor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-card h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.doctor-specialty {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 14px;
}

.doctor-experience {
  color: var(--text-light);
  font-size: 13px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.doctor-details {
  text-align: left;
  margin-bottom: 15px;
}

.doctor-contact {
  color: var(--text-light);
  font-size: 13px;
  margin-bottom: 6px;
}

.doctor-schedule {
  color: var(--success-color);
  font-size: 13px;
  font-weight: 500;
}

.doctor-booking-btn {
  display: inline-block;
  width: 100%;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.doctor-booking-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.view-all-doctors {
  text-align: center;
  margin-top: 40px;
}

.btn-view-all {
  display: inline-block;
  padding: 15px 40px;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Beds Section */
.beds-section {
  background-color: var(--white);
}

.beds-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.stat-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.stat-card.stat-available {
  background: linear-gradient(135deg, var(--success-color) 0%, #34ce57 100%);
}

.stat-card.stat-occupied {
  background: linear-gradient(135deg, var(--info-color) 0%, #20c997 100%);
}

.stat-card.stat-rate {
  background: linear-gradient(135deg, #6f42c1 0%, #9b6dd0 100%);
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.stat-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.stat-card h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 18px;
  opacity: 0.9;
}

/* Data Table Styles */
.beds-detail-table,
.appointments-list {
  background-color: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.table-title,
.list-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table thead {
  background-color: var(--bg-light);
}

.data-table th {
  padding: 15px 12px;
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 2px solid var(--border-color);
  white-space: nowrap;
}

.data-table td {
  padding: 15px 12px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-light);
}

.data-table tbody tr:hover {
  background-color: rgba(26, 115, 232, 0.05);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

/* Status Badges */
.status-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.status-normal {
  background-color: rgba(40, 167, 69, 0.15);
  color: var(--success-color);
}

.status-warning {
  background-color: rgba(255, 193, 7, 0.15);
  color: #c79100;
}

.status-critical {
  background-color: rgba(220, 53, 69, 0.15);
  color: var(--danger-color);
}

.status-waiting {
  background-color: rgba(255, 193, 7, 0.15);
  color: #c79100;
}

.status-in-progress {
  background-color: rgba(23, 162, 184, 0.15);
  color: var(--info-color);
}

.status-completed {
  background-color: rgba(40, 167, 69, 0.15);
  color: var(--success-color);
}

/* Today Appointments Section */
.today-appointments-section {
  background-color: var(--bg-light);
}

.appointments-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.summary-card {
  background-color: var(--white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.summary-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.summary-icon {
  font-size: 40px;
}

.summary-content h4 {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 5px;
}

.summary-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
}

.summary-number.waiting {
  color: #c79100;
}

.summary-number.in-progress {
  color: var(--info-color);
}

.summary-number.completed {
  color: var(--success-color);
}

/* Appointment Section */
.appointment-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 100px 0;
}

.appointment-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.appointment-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.appointment-content > p {
  font-size: 18px;
  margin-bottom: 50px;
  opacity: 0.95;
  line-height: 1.8;
}

.appointment-steps {
  display: flex;
  justify-content: space-around;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.step {
  flex: 1;
  min-width: 180px;
  text-align: center;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: var(--white);
  color: var(--primary-color);
  border-radius: 50%;
  line-height: 60px;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.step p {
  font-size: 16px;
  opacity: 0.95;
}

.btn-appointment {
  display: inline-block;
  padding: 18px 50px;
  background-color: var(--white);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.btn-appointment:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  background-color: var(--bg-light);
}

.appointment-note {
  font-size: 14px;
  opacity: 0.85;
  margin-top: 15px;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--primary-light);
  font-weight: 600;
}

.footer-col p {
  margin-bottom: 12px;
  line-height: 1.8;
  opacity: 0.9;
  font-size: 14px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.9;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  opacity: 0.8;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-list {
    gap: 40px;
  }

  .slide-content h1 {
    font-size: 40px;
  }

  .slide-content p {
    font-size: 18px;
  }

  .quick-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .quick-stat-item:nth-child(2),
  .quick-stat-item:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .quick-stat-item:nth-child(3),
  .quick-stat-item:nth-child(4) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  header.header {
    flex-direction: column;
    padding: 15px 20px;
  }

  nav.navbar {
    width: 100%;
    margin: 15px 0;
  }

  .nav-list {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .header-btn {
    width: 100%;
    justify-content: center;
    margin-top: 15px;
  }

  .hero-section {
    height: 500px;
  }

  .slide-content h1 {
    font-size: 32px;
  }

  .slide-content p {
    font-size: 16px;
  }

  .btn-cta {
    padding: 12px 30px;
    font-size: 16px;
  }

  .slide-btn {
    width: 40px;
    height: 40px;
    padding: 15px;
    font-size: 18px;
  }

  .slide-btn.prev {
    left: 15px;
  }

  .slide-btn.next {
    right: 15px;
  }

  section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .services-grid,
  .wards-grid,
  .doctors-grid,
  .beds-stats {
    grid-template-columns: 1fr;
  }

  .quick-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quick-stat-number {
    font-size: 32px;
  }

  .appointment-steps {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .data-table {
    font-size: 12px;
  }

  .data-table th,
  .data-table td {
    padding: 10px 8px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 60px;
  }

  .nav-list {
    gap: 15px;
  }

  .nav-list a {
    font-size: 14px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .hero-section {
    height: 400px;
  }

  .slide-content h1 {
    font-size: 24px;
  }

  .slide-content p {
    font-size: 14px;
  }

  .section-title {
    font-size: 24px;
  }

  .appointment-content h2 {
    font-size: 28px;
  }

  .stat-card h3 {
    font-size: 36px;
  }

  .quick-stats-grid {
    grid-template-columns: 1fr;
  }

  .quick-stat-item {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .quick-stat-item:last-child {
    border-bottom: none;
  }

  .appointments-summary {
    grid-template-columns: 1fr;
  }
}
