.app-card {
    background: var(--bg2, #23232b);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .16);
}

.app-card-soft {
    background: color-mix(in srgb, var(--bg2, #23232b) 88%, transparent);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 8px;
}

.app-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.app-section-title h2,
.app-section-title h3 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.6;
}

.app-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: var(--text, #fff);
    font-size: .85rem;
    line-height: 1.4;
    text-decoration: none;
}

.app-chip:hover {
    color: var(--text, #fff);
    border-color: rgba(255, 255, 255, .2);
}

.app-empty-state {
    display: grid;
    place-items: center;
    min-height: 180px;
    padding: 28px;
    border: 1px dashed rgba(255, 255, 255, .16);
    border-radius: 8px;
    text-align: center;
}

.app-progress {
    overflow: hidden;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
}

.app-progress > span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--primaryColor, #4958a5);
}

.app-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
