.specs-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    column-gap: 20px;
}
.specs-table {
    width: 48%;
    margin-bottom: 20px;
    border-collapse: collapse;
}
.specs-table th, .specs-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}
.specs-table th {
    background-color: #F4F4F2!important;
    font-weight: bold;
}
.specs-table td{
    background-color: #FFF;
    font-weight: 700;
}
/* תצוגה במובייל - טבלה אחת בעמודה */
@media screen and (max-width: 768px) {
    .specs-wrapper {
        display: block;
    }
    .specs-table {
        width: 100%;
    }
}