
.table-wrapper {
    overflow-x: auto;   /* горизонтальный скролл на мобильных */
}


.table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, Helvetica, sans-serif;
}


.table td:first-child {
    white-space: nowrap;   /* текст не переносится, если мало места */
    vertical-align: middle;
}

.table td img {
    height: 28px;     
    width: auto;
    vertical-align: middle;
    margin-right: 8px;
}


@media (max-width: 480px) {
    table td img {
        height: 22px;
        margin-right: 6px;
    }
    table td {
        font-size: 14px;
        padding: 6px 4px;
    }
}

.os-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    padding: 0;
    list-style: none;
}

.os-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 8px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    transition: box-shadow .2s;
}

.os-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}


.os-card img {
    width: 48px;          
    height: 48px;
    object-fit: contain;
    margin-bottom: 8px;
}

.os-card h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}


@media (max-width: 480px) {
    .os-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 12px;
    }
    .os-card img {
        width: 40px;
        height: 40px;
    }
    .os-card h4 {
        font-size: 13px;
    }
}
