/* Reset básico */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
	font-size: 14px;
}

/* Navbar */
.navbar {
    background-color: #ffffff !important;
    border-bottom: 1px solid #ddd;
}

.navbar-brand img {
    height: 50px;
}

.dropdown-item {
	font-size: 14px;
}

/* Grid de botões */
/* Grid flexível para os botões */
.botao-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Cada botão ocupa espaço adequado */
.botao-item {
    flex: 1 1 calc(33.33% - 10px); /* Divide o espaço igualmente entre no máximo 3 botões */
    min-width: 200px; /* Tamanho mínimo */
    max-width: 300px; /* Tamanho máximo */
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    background: #f8f9fa;
}

/* Ajuste fino na seta do select */
.botao-tipo {
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    padding: 10px;
    background-color: lightseagreen;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
	color: #fff;
}

/* Força a seta mais para dentro */
.botao-tipo::-ms-expand {
    padding-right: 10px; /* Para navegadores Edge */
}



/* Container principal */
.container {
    max-width: 900px;
}

/* Cartão de login */
.card {
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Botões */
.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-success {
    background-color: #28a745;
    border: none;
}

.btn-success:hover {
    background-color: #1e7e34;
}

.btn-warning {
    background-color: #ffc107;
    border: none;
}

.btn-warning:hover {
    background-color: #e0a800;
}

.btn-danger {
    background-color: #dc3545;
    border: none;
}

.btn-danger:hover {
    background-color: #bd2130;
}

/* Formulários */
input, select, textarea {
    border-radius: 5px !important;
}

/* Tabela */
.table {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.table th {
    background-color: #007bff;
    color: white;
}

.table td {
    vertical-align: middle;
}

/* Centralização */
.text-center {
    text-align: center;
}

/* Margens */
.mt-4 {
    margin-top: 1.5rem;
}

.p-3 {
    padding: 1rem;
}

.w-100 {
    width: 100%;
}

/* Layout responsivo */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 10px;
    }
}
