.app-list-minimal {
    display: grid;
    gap: 0.9rem;
}

.alm-head {
    background: var(--white);
    border: 1px solid var(--lavender);
    border-radius: var(--radius-md);
    padding: 0.95rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.alm-head h1 {
    margin: 0 0 0.15rem;
    font-size: 1.25rem;
    color: var(--primary-dark);
}

.alm-head p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.alm-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.alm-stats article {
    background: var(--white);
    border: 1px solid var(--lavender);
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.7rem;
}

.alm-stats strong {
    display: block;
    font-size: 1.2rem;
    line-height: 1.1;
    color: var(--primary-dark);
}

.alm-stats span {
    font-size: 0.74rem;
    color: var(--text-muted);
}

.alm-panel {
    background: var(--white);
    border: 1px solid var(--lavender);
    border-radius: var(--radius-md);
    padding: 0.85rem;
}

.alm-empty {
    text-align: center;
    border: 1px dashed var(--lavender);
    border-radius: var(--radius-sm);
    padding: 1rem 0.8rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    background: var(--white);
}

.alm-item-list {
    display: grid;
    gap: 0.55rem;
}

.alm-item {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    border: 1px solid var(--lavender);
    border-radius: var(--radius-sm);
    padding: 0.55rem 0.6rem;
    background: #fff;
}

.alm-item img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--lavender);
    flex-shrink: 0;
}

.alm-item__body {
    min-width: 0;
    flex: 1;
}

.alm-item__title {
    margin: 0;
    font-size: 0.94rem;
    color: var(--primary-dark);
}

.alm-item__meta {
    margin: 0.2rem 0 0;
    font-size: 0.76rem;
    color: var(--text-muted);
}

.alm-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.16rem 0.48rem;
    border-radius: 999px;
    font-size: 0.67rem;
    font-weight: 700;
    border: 1px solid transparent;
}

.alm-chip--ok {
    color: #166534;
    background: #ecfdf3;
    border-color: #bbf7d0;
}

.alm-chip--pending {
    color: #c2410c;
    background: #fff7ed;
    border-color: #fed7aa;
}

.alm-chip--danger {
    color: #991b1b;
    background: #fef2f2;
    border-color: #fecaca;
}

.alm-distance {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.72rem;
}

@media (max-width: 767.98px) {
    .alm-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .alm-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.alm-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0.15rem 0 0.5rem;
}

.alm-pagination__meta {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}
