.sml-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sml-content-wrapper {
    text-align: center;
    width: 100%;
}

.sml-title {
    margin-top: 0;
    line-height: 1.2;
    font-weight: 700;
}

.sml-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.sml-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid; /* Color set by controls */
    border-radius: 4px; /* Slight rounding, or 0 for sharp */
    transition: all 0.3s ease;
    box-sizing: border-box;
    padding: 10px;
}

.sml-icon-wrapper {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sml-platform-name {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 767px) {
    .sml-list {
        gap: 10px;
    }
    .sml-button {
        /* On mobile, maybe shrink buttons slightly if needed, handled by slider control mostly */
        flex-basis: calc(50% - 10px); /* 2 per row on small screens if they don't fit */
        max-width: 150px;
    }
}

@media (min-width: 768px) {
    .sml-button {
        flex-shrink: 0;
    }
}
