/* Styles specific to the Apps page */
.apps-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.app-item {
    display: flex;
    flex-direction: column;
}

.app-item h2 {
    margin: 0 0 0.5rem;
}

.app-preview {
    width: 100%;
    height: 200px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
} 