/* ── Fila general ─────────────────────────── */
.property-row td {
    vertical-align: middle;
    font-size: 12px;
}

/* ── Checkbox columna ────────────────────── */
.es-column--_manage-checkbox {
    width: 32px;
    text-align: center;
}
.es-column--_manage-checkbox input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: #ee2624;
    cursor: pointer;
}

/* ── Acciones dropdown ───────────────────── */
.es-actions .es-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
    background: #fff;
    transition: background .15s, border-color .15s;
}
.es-actions .es-more:hover {
    background: #FFF0E8;
    border-color: #FFD9C0;
}

/* ── Etiqueta de estatus ─────────────────── */
.es-status-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    background: #f7f7f7;
    color: #555;
    white-space: nowrap;
}

/* Estatus: Publicado */
.status-publish .es-status-label:not([style]) {
    background: #fff;
    border-color: #169f72;
    color: #169f72;
    border-radius:16px;
}

/* Estatus: Borrador */
.status-draft .es-status-label:not([style]) {
    background: #fff;
    border-color: #854F0B;
    color: #854F0B;
     border-radius:16px;
}

/* Estatus: Pendiente */
.status-pending .es-status-label:not([style]) {
    background: #E6F1FB;
    border-color: #B5D4F4;
    color: #185FA5;
     border-radius:16px;
}

/* ── Switch destacar ─────────────────────── */
.featured-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.featured-switch input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.slider-featured {
    display: flex;
    align-items: center;
    width: 44px;
    height: 24px;
    background: #e0e0e0;
    border-radius: 999px;
    transition: background .2s;
    position: relative;
}
.slider-featured::before {
    content: '';
    position: absolute;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.2);
    transition: transform .2s;
}
.featured-switch input:checked + .slider-featured {
    background: #ee2624;
}
.featured-switch input:checked + .slider-featured::before {
    transform: translateX(20px);
}
.featured-switch input:disabled + .slider-featured {
    opacity: .45;
    cursor: not-allowed;
}

/* Texto dentro del switch */
.state-text {
    display: none; /* ocultamos texto, solo usamos el toggle visual */
}

/* ── Columna featured centrada ───────────── */
.es-column--featured {
    text-align: center;
    width: 60px;
}

/* ── ID como enlace ──────────────────────── */
.es-id-link {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    border-bottom: 1px dashed #ccc;
    transition: color .15s, border-color .15s;
    text-decoration: underline !important;
}

.es-id-link:hover {
    color: #ee2624;
    border-bottom-color: #ee2624;
    text-decoration: underline !important;
}