.calendar-container {
    text-align: center;

}

.available-times {
    text-align: center;
}

#times-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px; /* Adjust spacing between items */
    justify-content: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.pika-single {
    position: static !important;
}

#times-list .list-group-item {
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0;
    text-align: center;
    padding: 10px 0;
    border: 1px solid #cc8809;
    border-radius: 0;
}

#times-list .list-group-item:hover,
#times-list .list-group-item.active {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
}

#appointment-form-column {
    display: none; /* Initially hide the appointment form column */
}

.appointment-form h3 {
    margin-bottom: 20px;
}

.pika-lendar {
    width: 96% !important;
}

.list-group-item {
    text-align: center; /* Center-align text in the time slots */
    padding: 10px 0;
    border-color: #cc8809;
}

.list-group-item.active {
    font-weight: bold; /* Make the selected slot's text bold */
}

