﻿














.btnrows {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.btnrows img {
        width: 33px;
        height: 35px;
    }

.tdbtnrows {
    text-align: center;  /*Centraliza o conteúdo horizontalmente */
    vertical-align: middle;  /*Centraliza o conteúdo verticalmente */
}

/* Estilo para o botão flutuante Add*/
.floating-button-add {
    position: fixed;
    right: 10px;
    bottom: 20px;
    width: 90px;
    height: 90px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    border: solid;
    border-width: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 54px;
}

.floating-button-add:hover {
    background-color: #0056b3;
}


/* Estilo para o botão flutuante Save*/
.floating-button-save {
    position: fixed;
    right: 10px;
    bottom: 20px;
    width: 90px;
    height: 90px;
    background-color: green;
    color: white;
    border-radius: 50%;
    border: solid;
    border-width: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
}

    .floating-button-save:hover {
        background-color: darkgreen;
    }







.table-container {
    width: 100%;
    margin: 25px auto; /* Centraliza a tabela na página */
    overflow-x: auto; /* Adiciona rolagem horizontal quando necessário */
}

.table td.placa-column {
    min-width: 100px; /* Defina a largura desejada para a coluna "Placa" */
}

.table td,
.table th {
    vertical-align: middle;
}

.search-header-title {
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #333;
}


.search-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.search-label {
    font-size: 16px;
    color: #333;
    margin-right: 10px;
}

.search-input-container {
    display: flex;
    align-items: center;
}

.search-input {
    width: 80%; /* Ocupa 80% da largura da página */
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-button {
    padding: 8px 16px;
    margin-left: 10px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .search-button:hover {
        background-color: #0056b3;
    }

