
/* Styles for applist.html */
.app-list-page-container {
    padding: 1.5rem;
    flex-grow: 1;
}

.app-list {
    list-style: none;
    padding: 0;
}
.app-item {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    padding: 0.25rem 0;
    flex-wrap: nowrap;
    overflow: hidden; /* Ensure content doesn't wrap and cause horizontal scroll */
}

.app-item h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.app-item h3 a {
    text-decoration: none;
    color: var(--primary-color);
    white-space: nowrap; /* Title should not wrap */
}
.app-item h3 a:hover {
    text-decoration: underline;
}
.app-item .description {
    color: var(--text-muted-color);
    margin-bottom: 0;
    min-width: 0; /* Allow the description to shrink and show ellipsis */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.app-item .meta {
    font-size: 0.85rem;
    color: var(--text-color);
    display: flex;
    align-items: baseline;
    flex-shrink: 0;
    margin-left: -1rem;
}
.app-item .meta .tags {
    display: flex;
    gap: 0.3rem;
    flex-wrap: nowrap; /* Tags should not wrap among themselves */
}
.app-item .meta .tags span {
    display: inline-block;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    font-size: 0.8rem;
}

.app-list-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}
.app-list-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}
.app-list-header .back-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
}
.app-list-header .back-link:hover {
    background-color: var(--primary-hover-color);
}