/* Estilos del plugin Woo Ad Booker */

.dashboard-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.dashboard-user-info img {
    border-radius: 50%;
}

/* Modal de edición de reserva */
.wab-reserva-modal[hidden] {
    display: none;
}
.wab-reserva-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.wab-reserva-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}
.wab-reserva-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}
.wab-reserva-modal-content {
    position: relative;
    background: #fff;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90%;
    overflow-y: auto;
    border-radius: 4px;
    z-index: 1;
}

.wab-edit-reserva {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hidden {
    display: none;
}

/* Ícono con tooltip junto al selector de cantidad */
.wab-qty-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-left: 6px;
    border-radius: 50%;
    background: #ffffff;
    color: #333;
    cursor: pointer;
    font-size: 20px;
}

.wab-qty-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 6px 8px;
    border-radius: 4px;
    white-space: normal;
    width: 200px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 999;
}

.wab-qty-tooltip:hover::after,
.wab-qty-tooltip:focus::after {
    opacity: 1;
}

