
        .location-output-container, .appointment-info-container {
            margin-top: 5px;
            margin-bottom: 5px;
            padding: 5px;
        }

        .logo {
            max-width: 300px;
            max-height: 100px;
            margin-bottom: 20px;
            margin-right: 15px;
        }

        .logo img {
            max-width: 300px;
            max-height: 100px;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        /* Custom hover effect for doctor cards */
        .card {
            transition: box-shadow 0.3s ease-in-out; /* Smooth transition for the shadow */
        }
        .card:hover {
            box-shadow: 0 0 20px #007BFF; /* Blue glow effect */
        }
        .locationName {
            font-weight: bold;
            font-size:16px;
        }

        /* CSS to style the overlay */
        #overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Dark faded background */
            z-index: 1000; /* Ensure it's on top of everything */
            display: none; /* Initially hidden */
        }

        #overlay {
            display: none;
        }

        .practitionerPhotoDiv {
            max-width:200px;
            max-height: 180px;
            border: 1px solid black;

        }

        #primaryNavBar {

        }

        #secondaryNavBar {
            display:none;
            padding: 5px 5px 5px 5px;
            background-color:#EAECEE;
        }

        .loadingSpinner {
            justify-content: center; /* Horizontally center content */
            align-items: center; /* Vertically center content */    
            max-height: 20px;
            max-width: 20px;        
        }

        .slotButton {
            width:110px;
            height:45px;
            margin-bottom:5px;
        }

        .MoreSlotButton {
            width:137px;
            height:65px;
            margin-bottom:5px;
        }

        #openSlotButtonsDiv {margin-left:5px;}

        /* Adjust the width of the slotsModal */
        #slotsModal .modal-dialog {
/*            min-width: 80%; /* Flexible width on mobile devices */*/
            max-height: 90%;
            margin: 1.0rem auto;
        }


        @media (min-width: 768px) { /* Adjustments for screens wider than 768px */

            .row.g-1 {
                gap: 5px; /* Sets the gap between buttons on desktop */
            }


        }

.modal-title {color:#282724;}

/* Add spacing between options */
.form-select option.option-spacer {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Increase line-height for better readability */
.form-select option {
    line-height: 1.5;
}

.modal-body-scrollable {
  max-height: 600px;
  overflow-y: auto;
}

/* New slot display styles */
.nav-tabs .nav-link {
  color: #495057;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  text-align: center;
  min-width: 100px;
}

.nav-tabs .nav-link.active {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.nav-tabs .nav-link:hover {
  background-color: #e9ecef;
}

/* Slot button styles */
.slot-btn {
  font-size: 14px;
  padding: 10px 15px;
  transition: all 0.2s ease;
}

.slot-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Accordion styles for mobile */
.accordion-button {
  font-size: 16px;
  padding: 15px;
}

.accordion-button .badge {
  font-size: 12px;
}

/* Date preference modal styles */
#datePreferenceModal .btn-lg {
  padding: 15px 20px;
  font-size: 18px;
  margin-bottom: 10px;
}

#dateRangePickerDiv {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}

/* No suitable slots section */
#noSuitableSlotsDiv {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}

/* Loading state improvement */
.pleasewait {
  padding: 50px;
}

.pleasewait img {
  margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .slot-btn {
    font-size: 12px;
    padding: 8px 10px;
  }
  
  #slotsModal .modal-dialog {
    margin: 0.5rem;
  }
}