/* ================= GENERAL ================= */
.booking-section {
    padding: 60px 0;
    background: #f9f9f9;
    font-family: "Poppins", sans-serif;
  }
  
  .booking-left {
    padding-right: 40px;
  }
  
  .booking-title {
    font-size: 42px;
    font-weight: 800;
    color: #005a96;
    margin-bottom: 30px;
  }
  
  .booking-left p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #222;
  }
  
  /* ================= RIGHT SIDE ================= */
  .booking-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  
  /* Login / Signup buttons */
  .auth-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .auth-btn {
    text-decoration: none;  
    padding: 8px 5px;
    color: #000; 
    font-weight: 300;
    font-size: 12px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .auth-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #000; 
    transition: width 0.3s ease;
  }
  
  .auth-btn:hover::after {
    width: 100%; 
  }
  
  
  /* Appointment Box */
  .appointment-box {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    padding: 25px;
  }
  
  .appointment-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #222;
  }
  
  .appointment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding: 20px 0;
  }
  
  .appointment-item:first-of-type {
    border-top: none;
  }
  
  .appointment-item h5 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px;
    color: #333;
  }
  
  .appointment-item span {
    font-size: 14px;
    color: #777;
  }
  
  /* Book button */
  .book-btn {
    background: #000;
    color: #fff;
    padding: 10px 18px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .book-btn:hover {
    background: #333;
  }
  
  /* ================= CALENDAR ================= */
  
  /* Calendar Container */
  .calendar-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px;
    width: 420px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
  
  /* Header (Month & Navigation) */
  .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .calendar-header h5 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
  }
  
  .nav-btn {
    width: 40px;        
    height: 40px;      
    font-size: 20px;    
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .nav-btn:hover {
    background-color: #ddd;
  }
  
  /* Days of Week */
  .calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
    color: #dbeafe;
  }
  
  .calendar-days div {
      color: #000;
    padding: 8px 0;
  }
  
  /* Dates Grid */
  .calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 5px;
  }
  
  .calendar-dates div {
    padding: 12px 0;
    border-radius: 12px;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .calendar-dates div:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  /* Current Day Highlight */
  .calendar-dates .today {
    background: #2563eb;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
  }
  
  /* Date & Time Section */
  .datetime {
    margin-top: 20px;
    text-align: center;
  }
  
  .datetime h3 {
    font-size: 1.4rem;
    font-weight: 600;
  }
  
  .datetime p {
    font-size: 1.1rem;
    margin-top: 5px;
    color: #e0e7ff;
  }
  
  /* Days grid */
  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-top: 15px;
  }
  
  .day-btn {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px 0;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .day-btn:hover {
    background: #525252;
    color: white;
    border-color: #525252;
  }
  
  .day-btn.selected {
    background: #000;
    color: #fff;
    border-color: #000;
    font-weight: bold;
  }
  
  /* ================= TIME SLOTS ================= */
  .time-slots {
    margin-top: 25px;
  }
  
  .slots-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 10px auto 0 auto;
  }
  
  .time-btn {
    background: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .time-btn:hover {
    background: #525252;
    color: white;
    border-color: #525252;
  }
  
  .time-btn.selected {
    background: #000;
    color: white;
    border-color: #000;
    font-weight: bold;
  }
  
  /* ================= STEP BUTTONS ================= */
  .step-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
  }
  
  .book-btn:disabled {
    background: #bbb;
    cursor: not-allowed;
  }
  
  .book-btn:hover:not(:disabled) {
    background: #333;
  }
  
  /* ========== Auth Forms ========== */
  .form-control {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
  }
  
  .form-control:focus {
    border-color: #008ecc;
    outline: none;
    box-shadow: 0 0 6px rgba(0,142,204,0.3);
  }
  
  .appointment-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #005a96;
  }
  
  .appointment-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
  }
  
  .step-buttons .book-btn {
    background: black;
    color: white;
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .step-buttons .book-btn:hover {
    background: #333;
  }
  
  
  /* ================= RESPONSIVE ================= */
  @media (max-width: 992px) {
    .booking-section {
      padding: 40px 20px;
    }
    .booking-left {
      padding-right: 0;
      margin-bottom: 30px;
    }
    .booking-title {
      font-size: 32px;
    }
    .slots-container {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 576px) {
    .calendar-grid {
      gap: 6px;
    }
    .day-btn {
      padding: 10px 0;
      font-size: 14px;
    }
    .slots-container {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  