@media (max-width: 1120px) {

    .vehicles {
        padding-top: 55px;
    }


    .image-grid {
        display: flex;
        flex-wrap: wrap;
    }

    .image-grid img {
        max-width: 50px;
        max-height: 50px;

    }

    .vehicle-info fieldset {
        max-width: fit-content;
    }

    .login form input,
    .login form select {
        padding: 3px;
        max-width: 70%;
    }


    /*Index*/
    .auth-container {
        height: 80%;
    }

    .logo img {
        width: 200px;
        height: auto;
        user-select: none;
    }

    /*FIM INDEX*/

    /* Container em grade para os cards */
    .vehicle-box {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        padding: 1rem;
        justify-items: center;
    }

    .vehicle-cards:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    }

    .menuVehicles-content {
        justify-content: center;
    }


    .image-grid img {
        width: 100%;
        height: 100px;
        object-fit: cover;
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .solicitar-veiculos-info {
        display: flex;
    }


    /* Outros componentes e containers */
    .image-type-group {
        margin: 5px;
        max-width: 300px;
        padding: 0;
    }

    .image-type-group {
        flex: 1 1 100px;
    }

    .image-grid img {
        width: 100px;
        height: 80px;
        object-fit: cover;

    }

    .image-grid img:hover {
        transform: scale(1.01);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }

    .checklist-items label {
        width: 100%;
        display: flex;
        align-items: center;
    }

    /*OPERADOR*/
    .menuVehicles-info {
        max-width: 280px;
    }


    .vehicles-container {
        margin-top: 50px;

    }

    .table-historico tbody {
        grid-template-columns: 1fr;
    }

    .historicoBtn {
        display: none;
    }

    .table-historico thead {
        display: none;
    }

    .table-historico,
    .table-historico tbody,
    .table-historico tr,
    .table-historico td {
        display: block;
        width: 100%;
    }

    .table-historico tr {
        margin-bottom: 15px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        padding: 10px;
        border-radius: 6px;
    }

    .table-historico td {
        padding: 8px;
        border: none;
        position: relative;
    }

    .table-historico td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary);
        display: block;
        margin-bottom: 4px;
    }

}


@media (max-width: 800px) {
    .menuVehicles-info {
        max-width: 100%;
    }

}