.rpcm-menu {
    width: 240px;
    background: #ffffff;
    border-right: 1px solid #eef0f3;
    padding: 8px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    height: 100%;
    box-sizing: border-box;
}

.rpcm-lista {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rpcm-item a,
.rpcm-item span:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    cursor: pointer;
}

.rpcm-item a:hover {
    background: #f4f5ff;
    color: #4f46e5;
}

.rpcm-item .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    color: inherit;
}

.rpcm-item.rpcm-activo > a {
    background: #fdece3;
    color: #c2410c;
    font-weight: 600;
    border-radius: 8px;
    margin: 0 8px;
    padding-left: 12px;
}

.rpcm-etiqueta {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rpcm-badge {
    background: #d1fae5;
    color: #047857;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
}

.rpcm-flecha {
    font-size: 14px !important;
    width: 14px !important;
    height: 14px !important;
    color: #9ca3af;
}

/* Ítems sin URL configurada todavía ("Próximamente") */
.rpcm-item.rpcm-proximamente > span:first-child {
    color: #c1c5cc;
    cursor: default;
}
.rpcm-item.rpcm-proximamente .dashicons {
    color: #d5d8dd;
}
.rpcm-tooltip {
    display: none;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 8px;
    background: #111827;
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
    z-index: 10;
}
.rpcm-item.rpcm-proximamente:hover .rpcm-tooltip {
    display: block;
}

@media (max-width: 900px) {
    .rpcm-menu { width: 100%; border-right: none; border-bottom: 1px solid #eef0f3; }
    .rpcm-lista { display: flex; overflow-x: auto; }
    .rpcm-item a, .rpcm-item span:first-child { padding: 10px 14px; }
    .rpcm-etiqueta { display: none; }
}
