/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

#gm-booking-form-container {
    border: 1px solid #ddd;
    padding: 20px;
    margin-top: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

.gm-slots-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gm-slots-list li {
    margin-bottom: 10px;
}

.gm-slot-btn {
    width: 100%;
    padding: 10px;
    background: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
}

.gm-slot-btn:hover {
    background: #f0f0f0;
}

.gm-slot-btn.selected {
    background: #007cba;
    color: #fff;
    border-color: #005a87;
}
