/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos básicos */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    overflow-x: auto; /* Adicionamos overflow-x para permitir rolagem horizontal em telas menores */
}

h2 {
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    white-space: nowrap; /* Impede que o conteúdo da tabela quebre em várias linhas */
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 5px;
    text-align: center;
}

th {
    background-color: #f2f2f2;
}

.error-message {
    color: #ff0000;
    margin-bottom: 20px;
}

form {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="date"],
select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #4CAF50; /* edição cores botão pesquisa */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

a {
    color: #007bff;
    text-decoration: none;
    margin-right: 10px;
}

a:hover {
    text-decoration: underline;
}

/* Tabela Listar responsiva */
.responsive-table {
    overflow-x: auto;
    white-space: nowrap;
}

/* Estilos para centralizar o botão de pesquisa */
.search-button {
    text-align: center;
    margin-bottom: 20px; /* Adiciona um espaço entre o campo de pesquisa e o botão */
}

/* Estilo dos h3 e h2 da pagina birds  */
.gerenciar {
    text-align: center;
}


.borytiley {
    text-align: center; /* Centraliza o conteúdo na página */
}

/* Estilo para destacar o texto "Bem-vindo" e o nome do usuário */
.welcome-text {
    font-weight: bold; /* Aplica negrito */
    color: #007bff; /* Altera a cor do texto */
}

/* Estilo para alinhar à esquerda */
.left-align {
    text-align: left;
}

/* Estilo para alinhar à direita */
.right-align {
    text-align: right;
}


.btn-Gerenciar-Aves {
    background-color: none;
    color:  #007bff;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 12px;
    border: none;
}


.form-group {
    font-weight: bold;
}

.button_edi {
    display: inline-block;
    padding: 5px 5px;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.profile-inf {
    font-weight: bold;

}

