/* Calendar view buttons - shift to left */
.fc-toolbar-chunk .fc-button-group {
    margin-right: 70px !important;
}

/* Move "Heute" button to the left */
.fc-today-button {
    margin-right: 15px !important;
}

/* Package Card Compact Styles */
.package-card {
    box-shadow: 0px 4px 40px 0px #00000020 !important;
    transition: transform 0.3s ease !important;
    min-height: 420px !important;
    max-width: 320px !important;
    position: relative !important;
    padding: 20px 15px !important;
    margin: 0 auto !important;
}

.package-card:hover {
    transform: translateY(-3px) !important;
}

/* Reduce spacing between package cards */
.row.justify-content-center > .col-md-4 {
    padding-left: 6px !important;
    padding-right: 6px !important;
}

/* Most Popular Badge - Slightly Larger */
.most-popular {
    font-size: 11px !important;
    padding: 6px 18px !important;
    top: -14px !important;
}

/* Card Custom Styles - Slightly Larger */
.card-custom {
    max-width: 380px !important;
    margin: 0 auto !important;
    padding: 20px !important;
}

.card-custom .price-header h3 {
    font-size: 1.5rem !important;
    margin-bottom: 10px !important;
}

.card-custom .price-description {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
}

.card-custom .text-primary {
    font-size: 0.95rem !important;
    margin-bottom: 12px !important;
}

.card-custom .text-start {
    margin-top: 18px !important;
}

.card-custom .text-start span {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
}

.card-custom .text-start img {
    width: 18px !important;
    height: 18px !important;
}

.card-custom .d-flex.align-items-center {
    margin-bottom: 0.6rem !important;
}

.card-custom .findoc-btn.text-white {
    font-size: 11px !important;
    padding: 6px 18px !important;
    margin-bottom: 12px !important;
}

/* Feature Section Compact */
.row.justify-content-center.align-items-start.g-5 {
    gap: 1rem !important;
}

.row.justify-content-center.align-items-start .col-md-6 h5 {
    font-size: 1.1rem !important;
    margin-bottom: 15px !important;
}

.row.justify-content-center.align-items-start .col-md-6 p {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
}

.row.justify-content-center.align-items-start .feature-icon img {
    width: 16px !important;
    height: 16px !important;
}

.row.justify-content-center.align-items-start .d-flex.align-items-start {
    margin-bottom: 0.6rem !important;
}

.package-card .price-header h3 {
    font-size: 1.4rem !important;
    margin-bottom: 8px !important;
}

.package-card .price-description {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
}

.package-card .price-price h2 {
    font-size: 2rem !important;
    margin: 8px 0 !important;
}

.package-card .price-price h2 sub {
    font-size: 1.1rem !important;
}

.package-card .price-price p {
    font-size: 0.85rem !important;
}

.package-card .text-start p {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0.6rem !important;
}

.package-card .text-start .cross {
    width: 14px !important;
    margin-right: 6px !important;
}

#Cheopen {
    width: 100%;
    max-width: 250px;
    margin: 20px 0; /* Aligns the component to the left */
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
    border: 1px solid #ddd; /* Light border for a clean look */
  }
  
  .month-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    gap: 10px; /* Adds spacing between elements */
  }
  
  .prev-month,
  .next-month {
    background-color: var(--bs-theme);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    width: 40px; /* Equal button width */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  }
  
  .prev-month:hover,
  .next-month:hover {
    background-color: var(--bs-theme-hover);
    transform: scale(1.1); /* Subtle hover effect */
  }
  
  .current-month {
    padding: 8px 15px;
    border-radius: 6px;
    background-color: #f1f1f1;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-align: center;
    min-width: 120px;
  }
  

 
  /* Date Carousel Container */
#dateformat {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #ddd;
    gap: 10px; /* Adjusted spacing */
  }
  
  /* Scroll Buttons */
  .scroll-btn {
    background-color: var(--bs-theme); /* Updated button color */
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  .scroll-btn:hover {
    background-color: var(--bs-theme-hover);
    transform: scale(1.1);
  }
  
  /* Carousel Track */
  .custom-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex-grow: 1;
    white-space: nowrap;
    padding: 10px 5px;
    gap: 15px; /* Proper spacing between items */
  }
  
  .custom-carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
  }
  
  /* Carousel Items */
  .custom-carousel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    padding: 5px;
    border-radius: 5px;
    min-width: 70px;
    /*Uniformsize*/min-height: 70px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    border: 1px solid #ddd;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
  
  .custom-carousel-item:hover {
    background-color: #2E7A4E;
    color: white;
    transform: scale(1.05);
  }
  
  /* Date Design */
  .date-design {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    padding: 8px;
    width: 100%;
  }
  
  /* Active Date Styling */
  .date-design.active {
    background-color: #2E7A4E;
    color: white;
    padding: 5px;
    border-radius: 5px;
    border: 2px solid #256642;
    box-shadow: 0 4px 8px rgba(31, 122, 99, 0.3);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
  

  /* time slots */

 /* General Styles for total-shift */
.total-shift {
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    row-gap: 25px !important;
  }
  
  /* Shift Schedule */
  .shift-shedule {
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    background: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  /* Shift Header */
  .shift-head {
    display: flex;
    justify-content: space-between;
    align-items: left;
    background-color: #246c91;
    color: white;
    padding: 12px;
    border-radius: 6px;
  }
  
  .shift-head h6 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
  }
  
  .shift-head span {
    font-size: 14px;
    font-weight: normal;
  }
  
  /* Time Slot Container */
  .shift-time {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
    justify-content: left;
  }
  
  /* Individual Slot Button Style */
  .shift-time button {
    background-color: white; /* White background by default */
    color: #246c91; /* Border color matches the background color */
    border: 2px solid #246c91; /* Border with same color as button text */
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    width: 90px;
    height: 40px;
    text-align: center;
    outline: none;
  }
  
  /* Hover Effect on Slot Buttons */
  .shift-time button:hover {
    background-color: #1d5a78;
    color: white;
    border-color: #1d5a78;
  }
  
  /* Active (Selected) Slot */
  .shift-time button.selected {
    background-color: #1d5a78; /* Active state color */
    color: white; /* Text color when active */
    border-color: #1d5a78; /* Border matches active color */
  }
  
  /* Shift Content */
  .shift-content {
    margin-top: 0px;
    padding: 10px;
    font-size: 14px;
    color: #555;
    text-align: left;
  }
  
  /* Save Button Container */
  .save-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  
  /* Save Button Styles */
  .save-button-container button {
    width: 30%;
    background-color: #246c91;
    border-color: #246c91;
    color: white;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-align: center;
  }
  
  .save-button-container button:hover {
    background-color: #1d5a78;
  }
  
  /* Disabled Save Button */
  .save-button-container button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    color: #888;
    border-color: #ccc;
  }
  
  /* Responsive Design for Small Screens */
  @media (max-width: 768px) {
    .total-shift {
      padding: 15px;
    }
  
    .shift-time {
      flex-direction: column;
      align-items: center;
    }
  
    .save-button-container button {
      width: 50%;
    }
  }
  
  @media (max-width: 480px) {
    .save-button-container button {
      width: 70%;
    }
  }
  


  .time-slot {
    /* Default styles */
    padding: 10px;
    margin: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
  }
  
  .time-slot.selected {
    /* Styles for selected slots */
    background-color: #246C91;
    color: white;
  }
  
  .time-slot.available {
    /* Styles for available slots */
    background-color: #e0f7fa;
  }
  
  .time-slot:disabled {
    /* Styles for disabled (unavailable) slots */
    background-color: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
  }



  /* Default or unknown status */
.status-unknown {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  color: #fff;
  background-color: #6c757d; /* Gray */
  border-radius: 0.25rem;
  font-size: 0.875rem; /* Slightly smaller than normal text */
}

/* 1) New Appointment */
.status-new-appointment {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  color: #fff;
  background-color: #28a745; /* Green */
  border-radius: 0.25rem;
  font-size: 0.875rem;
}

/* 2) Patient Arrived */
.status-patient-arrived {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  color: #fff;
  background-color: #46A064; /* Teal/Info */
  border-radius: 0.25rem;
  font-size: 0.875rem;
}

/* 3) Not Appear */
.status-not-appear {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  color: #fff;
  background-color: #dc3545; /* Red */
  border-radius: 0.25rem;
  font-size: 0.875rem;
}

/* 4) In Doctor's Room */
.status-in-doctors-room {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  color: #fff;
  background-color: #fd7e14; /* Orange */
  border-radius: 0.25rem;
  font-size: 0.875rem;
}

/* 5) In Waiting Room */
.status-in-waiting-room {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  color: #212529;
  background-color: #ffc107; /* Yellow */
  border-radius: 0.25rem;
  font-size: 0.875rem;
}

/* 6) Finished */
.status-finished {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  color: #fff;
  background-color: #38904E;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}



/* booking calender status */
.context-menu {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 10px;
}

.context-menu-header {
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.context-menu-header h6 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.context-menu-body {
  max-height: 250px;
  overflow-y: auto;
}

.context-menu-item {
  display: flex;
  align-items: center;
  padding: 5px 0;
  cursor: pointer;
}

.context-menu-item input[type="radio"] {
  margin-right: 10px;
}

.context-menu-item label {
  margin: 0;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.context-menu-footer {
  border-top: 1px solid #dee2e6;
  padding-top: 10px;
  text-align: right;
}

.context-menu-footer .btn {
  background-color: #38904E;
  border: none;
  padding: 5px 15px;
  font-size: 14px;
}

.context-menu-footer .btn:hover {
  background-color: #0056b3;
}

.modal-content-details {
  font-size: 16px;
  line-height: 1.6;
}

.modal-content-details p {
  margin: 5px 0;
}

.modal-content-details strong {
  color: #333;
}

/* rating */

.star-rating {
  display: inline-block;
  margin-bottom: 10px;
}

.star-rating .fa-star {
  color: #ccc; /* Default color for unselected stars */
}

.star-rating .fa-star.checked {
  color: #f8d825; /* Color for selected stars */
}

.feedbackform {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: none;
}

.text-danger {
  font-size: 14px;
  margin-top: 5px;
}


/* ==================================== Enquiry Model ============================================== */
.enquiry-over-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 40, 60, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.enquiry-over-modal {
  width: 85%;
  max-width: 550px;
  background: #fff;
  border-radius: 8px;
  overflow-y: auto;
  max-height: 85vh;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.enquiry-over-header {
  background: var(--bs-theme);
  color: #fff;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.enquiry-over-header h2 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

.enquiry-over-close {
  background: none;
  color: white;
  font-size: 24px;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.enquiry-over-body {
  padding: 14px 16px;
}

.enquiry-over-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5;
  flex-wrap: wrap;
  font-size: 13px;
}

.enquiry-over-row span {
  font-size: 13px;
}

.enquiry-over-row strong {
  font-size: 13px;
  font-weight: 600;
}

.enquiry-over-icon {
  color: #0a5b78;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.enquiry-over-images {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.enquiry-over-images img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 4px;
}


/* ================================== Change stauts model ======================== */
.change-status-menu {
  background-color: #f9fafa;
  border-radius: 20px;
  padding: 24px 20px;
  width: 280px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  font-family: 'Inter', sans-serif;
}

.change-status-header {
  font-weight: 600;
  font-size: 16px;
  color: #256387;
  margin-bottom: 12px;
}

.change-status-header-underline {
  height: 3px;
  width: 40px;
  background-color:  var(--bs-theme);
  border-radius: 2px;
  margin-top: 4px;
}

.change-status-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.change-status-option {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
  color: #111;
  cursor: pointer;
}

.change-status-option input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #bbb;
  border-radius: 50%;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.change-status-option input[type="radio"]:checked {
  border: 5px solid #00aaff;
  background-color: #fff;
}

.change-status-footer {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.change-status-footer button {
  background-color:  var(--bs-theme);
  color: white;
  padding: 10px 32px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.change-status-footer button:hover {
  background-color: #1e4f6a;
}



/*  =====================Avail======== */
.avail-cal-wrapper {
  max-width: 600px;
  padding: 1rem;
  box-sizing: border-box;
  margin: 0 auto;
  overflow: hidden;
}

.calendra-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.avail-cal-times-wrapper {
  display: flex;
  flex-direction: column;
}

.avail-cal-main-layout {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  align-items: flex-start;
}

.avail-cal-day-column {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.avail-cal-times-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.avail-cal-nav-button {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2rem;
}

.avail-cal-arrow {
  background-color: #46A064;
  border: none;
  padding: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.avail-cal-arrow:hover:not(:disabled) {
  background-color: #1d5a78;
  transform: scale(1.05);
}

.avail-cal-arrow:disabled {
  background-color: #ccc;
  color: #999;
  cursor: not-allowed;
  transform: none;
}

.avail-cal-day {
  text-align: center;
  padding: 0.5rem;
}

.avail-cal-date {
  font-weight: 300;
  font-size: small;
  margin: 1rem 0;
}

.avail-cal-date-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.2rem;
}

.avail-cal-weekday {
  font-weight: 600;
  font-size: 14px;
  color: inherit;
}

.avail-cal-date-month {
  font-weight: 400;
  font-size: 14px;
  color: inherit;
}

.avail-cal-times {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.avail-cal-slot {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avail-cal-slot-button {
  width: 100%;
  height: 100%;
  border: 1px solid #46A064;
  background-color: white;
  color: #46A064;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avail-cal-slot-button:hover {
  background-color: #46A064;
  color: white;
}

.avail-cal-slot-empty {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avail-cal-slot-empty .day {
  color: #ccc;
  font-size: 16px;
}

.scrollable {
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}



.avail-cal-footer {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.avail-cal-showmore {
  color: #46A064;
  border: none;
  background-color: transparent;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.avail-cal-showmore img {
  width: 15px;
  height: 15px;
  margin-left: 5px;
}

.avail-cal-month{
font-weight: 300;
font-size: 20px;
}



/* ================================== Full Calendar Styles ======================== */

  .fc .fc-button {
          background-color: var(--bs-theme) !important; /* Default button color */
          color: white !important;
          font-size: 1rem;
          padding: 4px 10px;
          border-radius: 0.25rem;
          border: none;
        }

        .fc .fc-button:hover {
          background-color: var(--bs-theme-hover) !important; /* Hover color */
          color: white !important;
        }

        /* Smaller title */
        .fc-toolbar-title {
          font-size: 0.9rem !important;
          font-weight: 500;
          margin-left: 100px !important;
        }

/* Language dropdown styling */
.language-dropdown .dropdown-toggle {
  border: none;
  background: transparent;
  padding: 5px;
}

.language-dropdown .dropdown-toggle:focus {
  box-shadow: none;
}

.language-dropdown .dropdown-menu {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
}

.language-dropdown .dropdown-item {
  padding: 8px 16px;
  transition: background-color 0.15s ease-in-out;
}

.language-dropdown .dropdown-item:hover {
  background-color: #f8f9fa;
}

.language-dropdown .dropdown-item.active {
  background-color: #38904E;
  color: white;
}

.language-dropdown .dropdown-item img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}
/* Mini Calendar Styles */
.cal-min-container {
  max-width: 280px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', sans-serif;
  border-radius: 10px;
  padding: 12px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cal-min-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 4px 0;
}

.cal-min-month-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #2E7A4E;
  letter-spacing: 0.3px;
}

.cal-min-nav-btn {
  background: linear-gradient(135deg, #2E7A4E 0%, #256642 100%);
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(31, 122, 99, 0.2);
}

.cal-min-nav-btn:hover {
  background: linear-gradient(135deg, #38904E 0%, #2E7A4E 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(31, 122, 99, 0.3);
}

.cal-min-nav-btn:active {
  transform: translateY(0);
}

.cal-min-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-weight: 600;
  font-size: 0.7rem;
  margin-bottom: 8px;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.cal-min-weekday {
  text-align: center;
  padding: 4px 0;
}

.cal-min-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-min-day {
  text-align: center;
  padding: 8px 0;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 0.8rem;
  font-weight: 500;
  color: #495057;
  position: relative;
}

.cal-min-day:not(.cal-min-empty):hover {
  background: linear-gradient(135deg, #EAF7F3 0%, #DFF3EC 100%);
  transform: scale(1.05);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.cal-min-today {
  background: linear-gradient(135deg, #ef7914 0%, #d66a12 100%);
  color: white;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(239, 121, 20, 0.3);
}

.cal-min-today:hover {
  background: linear-gradient(135deg, #f58b2e 0%, #ef7914 100%) !important;
}

.cal-min-selected {
  color: white;
  background: linear-gradient(135deg, #2E7A4E 0%, #256642 100%);
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(31, 122, 99, 0.3);
}

.cal-min-selected:hover {
  background: linear-gradient(135deg, #38904E 0%, #2E7A4E 100%) !important;
}

.cal-min-empty {
  pointer-events: none;
  background-color: transparent;
  opacity: 0.3;
}
