﻿body {
}
.custom-form-label {
    font-weight: bold;
    color: #495057;
}

.botaoBuscar {
    background: #0177A9;
    color: #F0F0F0;
    border: none;
    border-radius: 5px;
    padding: 8px 20px;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
}


    /*.botaoBuscar:hover {
        background: linear-gradient(90deg, #335d9c 0%, #4676b5 100%);*/ /* Gradiente mais claro no hover */
        /*transform: translateY(-2px);*/ /* Efeito de elevação */
    /*}*/

.letra {
    color: #182d54;
    font-weight: bold;
}

.borda {
    border: 1px solid #182d54;
    border-radius: 20px !important;
}

.botaoAdicionar {
    background: #4CAF50;
    color: #F0F0F0;
    border: none;
    border-radius: 5px;
    padding: 8px 20px;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
}

/*    .botaoAdicionar:hover {
        background: linear-gradient(90deg, #5a95c4 0%, #6aa6d1 100%);
        transform: translateY(-2px);
    }*/

.botaoNovo {
    background: #4CAF50;
    color: #F0F0F0;
    border: none;
    border-radius: 5px;
    padding: 8px 20px;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
}

    /*.botaoNovo:hover {
        background: linear-gradient(90deg, #0e4a89 0%, #1976d2 100%);*/ /* Gradiente ajustado para hover */
        /*transform: translateY(-2px);*/ /* Efeito de elevação */
    /*}*/




.botaoCancelar {
    background: #C6434B;
    color: #F0F0F0;
    border: none;
    border-radius: 5px;
    padding: 8px 20px;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
}

   /* .botaoCancelar:hover {
        background: linear-gradient(90deg, #ef5350 0%, #e57373 100%);
        transform: translateY(-2px);
    }*/

.botaoValidar {
    background: linear-gradient(90deg, #66bb6a 0%, #43a047 100%);
    color: #ffffff; /* Texto branco */
    border: none;
    border-radius: 5px;
    padding: 8px 20px;
    font-size: 17px;
    font-family: 'FreeMono', monospace; /* Fonte personalizada */
    box-shadow: 0 4px 8px rgba(0, 128, 0, 0.2);
    transition: background 0.3s ease, transform 0.2s ease;
}

    .botaoValidar:hover {
        background: linear-gradient(90deg, #43a047 0%, #66bb6a 100%);
        transform: translateY(-2px);
    }


.botaoFecharModal {
    background: #F57C00;
    color: #F0F0F0;
    border: none;
    border-radius: 5px;
    padding: 8px 20px;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
}

/*    .botaoFecharModal:hover {
        background: linear-gradient(90deg, #f9a825 0%, #fbc02d 100%);
        transform: translateY(-2px);
    }*/



.header-form {
    background: linear-gradient(90deg, #1465bb 0%, #2196f3 100%);  Gradiente entre #1465bb e #2196f3 
    color: #ffffff;  Texto branco para contraste 
    padding: 20px 10px;  Espaçamento interno 
    border-radius: 10px;  Bordas arredondadas 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  Sombra suave 
    font-family: 'Arial', sans-serif;  Fonte padrão 
}

    .header-form h1 {
        font-size: 2.5rem;  Tamanho do título 
        font-weight: bold;  Texto em negrito 
        margin: 0;  Remover margens extras 
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);  Sombra no texto para destaque 
    }

.inputEstilizado {
    border: 2px solid blue;
    padding: 12px;
    border-radius: 12px;
    outline: none;
}

    .inputEstilizado:focus {
        border-color: darkblue;
    }


/*Responsividade dos botões*/

.container-botoes {
    width: 100%;
    padding: 1rem 0;
}

.botoes-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem; /* Menor espaçamento entre botões */
    justify-content: flex-start;
    /*    padding-left: 1rem;*/
    margin: 0;
    max-width: 100%;
}

.botao-container {
    flex: 1 1 min(150px, 100%);
    max-width: 160px; /* Largura menor */
}

.botao {
    width: 100%;
    padding: 0.6rem 0.8rem; /* Menor altura e largura interna */
    /*font-size: 0.9rem;*/ /* Texto um pouco menor */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: background-color 0.3s;
}
