/* Modal modalidad Monazos — estilos globales (siempre visibles, fuera de scoped CSS) */

.modalidad-picker-root {
    position: fixed;
    inset: 0;
    z-index: 200002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    pointer-events: auto;
}

.modalidad-picker-root .modalidad-picker-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.32);
    z-index: 0;
}

.modalidad-picker-root .modalidad-picker-panel {
    position: relative;
    z-index: 1;
    background: #fff;
    border: 2px solid #2b6cb0;
    border-radius: 14px;
    padding: 22px 30px 18px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.28);
    min-width: 340px;
    max-width: 92vw;
    outline: none;
}

.modalidad-picker-root .modalidad-picker-titulo {
    font-weight: 800;
    font-size: 1.12rem;
    text-align: center;
    margin-bottom: 14px;
    color: #1a365d;
}

.modalidad-picker-root .modalidad-picker-opciones {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin: 0;
}

.modalidad-picker-root .modalidad-radio-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.12s ease, border-color 0.12s ease;
}

.modalidad-picker-root .modalidad-radio-item.focused {
    background: #e8f0fe;
    border-color: rgba(43, 108, 176, 0.35);
}

.modalidad-picker-root .radio-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #2b6cb0;
    flex-shrink: 0;
    box-sizing: border-box;
}

.modalidad-picker-root .radio-dot.on {
    background: radial-gradient(circle at 50% 50%, #2b6cb0 0 45%, transparent 46%);
}

.modalidad-picker-root .radio-text {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1f2937;
}

.modalidad-picker-root .modalidad-picker-ayuda {
    margin-top: 16px;
    font-size: 0.88rem;
    color: #4b5563;
    text-align: center;
}
