.mb-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;

    min-height: 68px;

    border: 2px solid transparent;

    transition:
        border-color .2s ease,
        background-color .2s ease,
        transform .2s ease;
}

.mb-slot:hover:not(:disabled) {
    transform: translateY(-2px);
}

.mb-slot-time {
    font-weight: 600;
}

.mb-slot-price {
    font-size: 13px;
    opacity: .75;
}

/*
 * Hora seleccionada.
 */
.mb-slot-selected {
    border-color: #2563eb;
    background: #dbeafe;
}

/*
 * Hora ocupada.
 */
.mb-slot-unavailable {
    opacity: .25;
    cursor: not-allowed;
}


/*
 * Resumen.
 */
.mb-summary {
    margin-top: 30px;
    padding: 25px;

    border: 1px solid #ddd;
    border-radius: 10px;

    background: #fff;
}

.mb-summary h3 {
    margin-top: 0;
}

.mb-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding: 8px 0;
}

.mb-summary-total {
    margin-top: 10px;
    padding-top: 15px;

    border-top: 1px solid #ddd;

    font-size: 20px;
}

#mb-continue {
    width: 100%;

    margin-top: 20px;
    padding: 14px 20px;

    cursor: pointer;
}

#mb-continue:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.mb-customer-step,
.mb-booking-result {
    margin-top: 30px;
    padding: 25px;

    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.mb-field {
    margin-bottom: 20px;
}

.mb-field label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
}

.mb-field input {
    width: 100%;
    padding: 12px 14px;
}

#mb-create-booking {
    width: 100%;
    padding: 14px;
}

.mb-booking-error {
    margin-bottom: 15px;
    padding: 12px;

    background: #fee2e2;
    color: #991b1b;
}