.elementor-1043 .elementor-element.elementor-element-9e84ce4{--display:flex;}/* Start custom CSS *//* Style for the lab card */
.lab-card {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.lab-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Style for the Book button */
.book-lab {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: #0073aa;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.book-lab:hover {
    background-color: #005f8d;
}

/* Style for the selected lab card */
.lab-card.selected {
    border-color: #0073aa;
    background-color: #f1faff;
}/* End custom CSS */