.related-devices-list {
    display: flex;
    overflow-x: auto;
    gap: 5px;
    padding: 5px;
    list-style: none;
    margin: 0;
}
.related-devices-list::-webkit-scrollbar {
    height: 4px;
}
.related-devices-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}
.related-devices-list::-webkit-scrollbar-track {
    background: #e8e8e8;
}
.related-devices-list li {
    flex: 0 0 auto;
    width: 145px;
    height: auto;
    background: #fff;
    border-radius: 4px;
    border: none;
    text-align: center;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0px;
}
.related-devices-list a {
    display: block;
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 6px;
}
.related-devices-list img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0px;
}
.related-device-name {
    font-size: 14px;
    font-weight: 500;
    font-family: Roboto;
    margin: 5px 0px 0px 0px;
    white-space: normal;
    overflow-wrap: break-word;
    height: auto;  
    line-height: 1.2em;
    overflow: hidden;
}
.related-device-price {
    font-size: 12px;
    color: #28a745;
    font-weight: bold;
    margin-top: 0px;
    padding-bottom: 1px;
}