/* Scheduling Flow Styles */
.schedule-step {
    margin-top: 2rem;
    /* padding: 1.5rem; */
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    min-width: 16rem;
}

.location-choice:hover {
    background-color: #f8f9fa;
}

/* Calendar Styles */
#calendar-container {
    padding: 0px;
}

#schedule-container {
    padding-left: 0px;
    padding-right: 0px;
}


.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day-name {
    text-align: center;
    font-weight: bold;
    font-size: 0.8em;
    color: #6c757d;
}

.calendar-day {
    text-align: center;
    padding: 10px 5px;
    border: 1px solid #e9ecef;
    border-radius: .25rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.calendar-day.not-in-month {
    background-color: #f8f9fa;
    color: #adb5bd;
    cursor: not-allowed;
}

.calendar-day.available:hover {
    background-color: #d1e7dd; /* Light green */
}

.calendar-day.selected {
    background-color: #0d6efd; /* Primary blue */
    color: white;
}

.calendar-day.disabled {
    background-color: #f8f9fa;
    color: #adb5bd;
    cursor: not-allowed;
}


/* Time Slot Styles */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.time-slot-btn {
    padding: 0.75rem;
}

.btn-google {
    width: 100%;
    border: solid;
    border-width: 1px;
    border-color: var(--bs-border-color);
}
.btn-google:hover {
    border-color: var(--bs-border-color);
    border-width: 2px;
}

.icon-google {
    width: 25px;
    margin-right: 5px;
}



/* Fullscreen Overlay Menu */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1050; /* Sits above the navbar content but below modals */
    display: flex;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.overlay-menu.open {
    opacity: 1;
    visibility: visible;
}

.overlay-content .nav-link {
    color: white;
    padding: 1rem;
    font-size: 2.2rem; /* Larger font size for menu items */
    display: block;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.overlay-content {
    margin-top: 6rem;
}

.overlay-content .nav-link:hover {
    color: #cccccc; /* A subtle hover effect */
}

/* Custom Hamburger to X Toggler */
.navbar-toggler {
    border: none;
    padding: 0;
    margin-left: 1rem;
    z-index: 1051; /* Ensures the toggler is on top of the overlay */
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hamburger-icon {
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #343a40; /* Dark color for the hamburger bars */
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

/* When the menu is open, the icon becomes an 'X' with white bars */
.navbar-toggler.open .hamburger-icon span {
    background: #fff;
}

/* Position of the 3 hamburger bars */
.hamburger-icon span:nth-child(1) { top: 0px; }
.hamburger-icon span:nth-child(2) { top: 10px; }
.hamburger-icon span:nth-child(3) { top: 20px; }

/* Animation to 'X' */
.navbar-toggler.open .hamburger-icon span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.navbar-toggler.open .hamburger-icon span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.navbar-toggler.open .hamburger-icon span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}


.password-wrapper {
    position: relative;
}
.password-wrapper .form-control {
    padding-right: 2.5rem; /* Make space for the icon */
}
.password-toggle-icon {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
}


@media (max-width: 480px) {
  .hamburger-icon {
    width: 25px;
  }
}