.feature-list {
    padding-left: 0;
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
}

.feature-list li::before {
    content: "✔️";
    margin-right: 10px;
    font-size: 18px;
    color: #00b5ad;
}

.card {
    border-radius: 10px;
}

.btn-outline-info {
    border: 2px solid #00b5ad;
    color: #00b5ad;
}

.btn-outline-info:hover {
    background-color: #00b5ad;
    color: white;
}

.text-center p {
    margin: 0;
}

.modal-container {
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.modal-container.show {
    display: flex; /* Show when the class is added */
}

.modal-content {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    /*width: 1000px;*/
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.close-btn {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.modal-body {
    display: flex;
    gap: 20px;
}

.calendar-section {
    flex: 1;
}

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

.prev-btn,
.next-btn {
    background-color: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    text-align: center;
    padding: 10px;
}

td {
    cursor: pointer;
    transition: background-color 0.3s;
}

td:hover {
    background-color: #f0f0f0;
}

.selected-date {
    background-color: #007acc !important;
    color: #1f0303;
}

.time-slots-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.time-slot {
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 7px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.time-slot:hover {
    background-color: #007acc;
}

.time-slot.selected {
    background-color: #007acc;
    color: white;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.confirm-btn {
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn.active,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:hover,
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn.active,
.btn-group > .btn:active,
.btn-group > .btn:focus,
.btn-group > .btn:hover {
    z-index: 0;
}
