/* Botón Menú del topbar */
.app-topbar .app-menu-button {
    color: #ffffff !important;
}

/* Icono del menú */
.app-topbar .app-menu-button i {
    color: #ffffff !important;
}

/* Forzar uso de 100% del ancho del contenedor */
.tarjeta-full {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
}

/* Quitar padding lateral de columnas */
.tarjeta-full>[class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

/* Mantener alineación vertical */
.tarjeta-row {
    display: flex;
    align-items: center;
}

/* Botón bien alineado a la derecha */
.tarjeta-boton {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Estilo del botón */
.boton-azul {
    background: #0069d9;
    color: white !important;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.tarjeta-info {
    line-height: 1.4;
}

/* Cada renglón controla su propio espacio */
.tarjeta-info .linea {
    display: block;
    margin-bottom: 7px;   /* ajusta aquí */
}

/* Último renglón sin espacio */
.tarjeta-info .linea:last-child {
    margin-bottom: 0;
}

/* Limpieza Bootstrap */
.tarjeta-info label,
.tarjeta-info span,
.tarjeta-info i {
    margin: 0;
    padding: 0;
}


/* Permitir br solo en este bloque */
.tarjeta-br br {
    display: block !important;
}

/* Centrar verticalmente texto y botón */
.status-row {
    display: flex;
    align-items: center;
}

/* Solo la columna del botón */
.status-btn {
    display: flex;
    justify-content: right;
    align-items: right;
}

/* Oculta completamente el menustrip del mobiscroll */
#lista,
#lista * {
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Fuerza columnas en la misma línea solo en esta fila */
.fila-inline {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

/* Evita que las columnas ocupen 100% */
.fila-inline>[class*="col-"] {
    float: none !important;
    width: auto;
}

/* Espacio entre columnas */
.fila-inline>div {
    margin-right: 20px;
}