/* ESTADOS SMPC - estilos front */

.smpc-estado-wrapper {
    margin: 12px 0 18px;
}

.smpc-estado-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 10px;
    border: 1px solid #ddd;
    border-radius: 100px;
    background: #fff;
    cursor: pointer;
    text-transform: none;
    transition: box-shadow .2s ease;
}

.smpc-estado-btn:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.smpc-estado-icon {
    font-size: 22px !important;
    line-height: 1;
    color: #555;
}

.smpc-estado-label {
    font-weight: 600;
    color: #333;
}

.smpc-estado-name {
    color: #fff;
    padding: 2px 10px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 13px;
}

/* Modal */
.smpc-estado-modal {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .45);
    z-index: 10000;
}

.smpc-estado-modal.is-open {
    display: block;
}

.smpc-estado-modal-dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
    max-width: 620px;
    max-height: 85vh;
    overflow: auto;
    background: #fff;
    border-radius: 10px;
    padding: 22px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
}

.smpc-estado-close {
    position: absolute;
    top: 10px;
    right: 14px;
    border: none;
    background: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #888;
}

.smpc-estado-close:hover {
    color: #222;
}

.smpc-estado-modal-title {
    margin: 0 0 16px;
    font-size: 20px;
}

.smpc-estado-intro {
    margin: 0 0 18px;
    padding: 12px 14px;
    background: #f0f8ff;
    border-left: 4px solid #25b9d7;
    border-radius: 4px;
    line-height: 1.55;
    font-size: 14px;
    color: #333;
}

.smpc-estado-badge {
    display: inline-block;
    color: #fff;
    padding: 3px 12px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
}

.smpc-estado-desc {
    line-height: 1.6;
    font-size: 14px;
    color: #333;
}

/* Separador claro entre el grado principal y el resto */
.smpc-estado-others-header {
    margin: 26px 0 18px;
    padding: 11px 16px;
    background: #f4f6f8;
    border-top: 3px solid #25b9d7;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    color: #3a4149;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.smpc-estado-other {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #eee;
}

.smpc-estado-other:last-child {
    border-bottom: 0;
}
