
        .location-output-container, .appointment-info-container {
            margin-top: 5px;
            margin-bottom: 5px;
            padding: 5px;
        }

        .logo {
            max-width: 150px;
            max-height: 150px;
            margin-bottom: 20px;
        }

        /* 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:137px;
            height:65px;
            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;
}