.tab-content {
    display: none;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.active-tab {
    display: block;
}

.specifications-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    font-size: 16px;
    text-align: right;
}

.specifications-table th,
.specifications-table td {
    padding: 12px;
    border: 1px solid #ddd;
}

.specifications-table thead {
    background-color: #f8f8f8;
    font-weight: bold;
}

.specifications-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.specifications-table tbody tr:hover {
    background-color: #f1f1f1;
    transition: 0.3s;
}


.errMain .errChild {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.errMain .errChild .productErr {
    position: absolute;
    left: 0;
    top: 50px;
    width: 100%;
    min-height: 70px;
    background-color: #ffb0b0;
    color: #330000;
    border: 2px solid white;
    box-shadow: 0 0 5px rgba(0, 0, 0, .8);
    border-radius: 5px;
    padding: 20px;
    display: none;
}