﻿


.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 param Botão Flutuante menu, Salvar, Salvarcomonova*/
/* Contêiner do menu flutuante */
.floating-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

/* Botão principal */
.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10; /* Garante que o botão principal fique acima dos demais */
}

/* Contêiner dos botões adicionais */
.floating-buttons {
    position: absolute;
    bottom: 80px; /* Acima do botão principal */
    right: 0;
    display: flex;
    flex-direction: column; /* Empilha os botões verticalmente */
    gap: 10px; /* Espaçamento entre os botões */
    z-index: 9; /* Certifica que os botões adicionais fiquem atrás do botão principal */
}

/* Botões adicionais */
.floating-button-save,
.floating-button-back,
.floating-button-exit,
.floating-button-selres,
.floating-button-cadastrar,
.floating-button-save-as {
    width: 200px;
    height: 50px;
    padding: 0 10px; /* Adiciona espaço interno nos lados */
    border-radius: 10px;
    color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: flex-start; /* Ícone e texto alinhados à esquerda */
    align-items: center; /* Centraliza verticalmente */
    gap: 10px; /* Espaço entre o ícone e o texto */
    z-index: 8;
}

.floating-button-save {
    background-color: green;
}

.floating-button-selres {
    background-color: darkslateblue;
}

.floating-button-back {
    background-color: darkmagenta;
}

.floating-button-exit {
    background-color: darkred;
}

.floating-button-cadastrar {
    background-color: darkblue;
}

.floating-button-save-as {
    background-color: chocolate;
}



/* Ícones nos botões adicionais */
    .floating-button-save i,
    .floating-button-save-as i,
    .floating-button-back i,
    .floating-button-exit2 i,
    .floating-button-selres i,
    .floating-button-cadastrar i {
        font-size: 20px;
    }









.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: #00ACAC;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: #00ACAC;
}


























:root {
    --cor-fundo-escura: #00ACAC;
    --cor-fundo-clara: #AFEEEE;
}

.botoes-container {
    margin-top: 10px !important;
    display: flex;
    width: 100%;
    flex-wrap: wrap; /* Permite que os botões quebrem para a linha seguinte */
    justify-content: space-evenly; /* Distribui os botões igualmente */
    gap: 2%; /* Espaçamento entre os botões */
}

.botao {
    /*flex: 1 1 200px;*/ /* Cada botão terá um tamanho base de 200px, mas pode crescer ou encolher */
    min-width: 150px; /* Garante que os botões não fiquem menores que 150px */
    width: 48%;
    height: 80px;
    /*padding: 10px 0px 10px 0px;*/
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    background-color: var(--cor-fundo-escura); /* Cor de fundo (pode ser personalizada) */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 2%;
}

    .botao:hover {
        background-color: #FFF;
        color: var(--cor-fundo-escura)
    }

/* Responsividade para telas menores */
@media (max-width: 500px) {
    .botao {
        flex: 1 1 100%; /* Se a tela for muito pequena, os botões ocuparão 100% da largura */
        margin-top: 10px;
    }
}

