/* Таблица моделей */
.models-table {
    overflow-x: auto;
    margin: 30px 0;
}

.models-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.models-table th, .models-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.models-table th {
    background-color: green;
    color: white;
}

.models-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.models-table tr:hover {
    background-color: #f1f1f1;
}