/* header */
.header {
	font-family: Arial, "sans-serif";
    background-color: #34394afd;
    border-bottom: 1px solid white;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 16px;
    font-weight: none;
    margin-left: 20px;
    color: white;
}

.menu-toggle {
    display: none; /* Inicialmente oculto em telas maiores */
    position: relative;
    top: 0;
    margin-left: auto;
    margin-right: 10px; 
    padding: 3px; /* Adicione espaço ao redor do botão */
    z-index: 2; /* Certifique-se de que o botão esteja acima do conteúdo */
}

#mobile-menu-button {
    font-size: 24px;
    background-color: ##353a4a9b;
    border: 1px solid #fff;
    border-radius: 5px;
    cursor: pointer;
}

/* Estilize o menu móvel */
.mobile-menu {
    display: none; /* Inicialmente oculto em telas maiores */
    background-color: #353a4a9b;
    top: 20px; /* Ajuste conforme necessário para a posição desejada */
    width: 100%;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu li {
    padding: 10px;
    text-align: center;
}

.mobile-menu a {
    text-decoration: none;
    color: white;
}

/* Estilos para exibir o menu em telas menores e ocultar o menu na tela maior */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Exibir botão de menu em telas menores */
    }

    .desktop-menu {
        display: none; /* Ocultar menu de tela maior em telas menores */
    }
    .mobile-menu {
        display: block; /* Exibir menu móvel em telas menores */
    }
}


.navigation ul {
    font-size: 14px;
    list-style: none;
    margin-right: 20px;
}

.navigation li {
    display: inline;
    margin-right: 15px;
}

.navigation a {
    text-decoration: none;
    color: white;
}

/* searcher */
.main-section {
    font-family: Arial, "sans-serif";
    border-bottom: 1px solid white;
    background-color: #353a4a9b;
    color: white;
    text-align: center;
    padding: 1px 0;
}

.input-box,
.species-box,
.search-button-box {
    display: inline-block;
    margin: 5px;
    vertical-align: top;
}

.keyword-input {
    width: 350px;
    padding: 3px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.keyword-input_inside {
    width: 750px;
    padding: 3px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.species-select  {
    width: 150px;
    padding: 3px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.keyword-example,
.advanced-search-link {
    font-size: 12px;
    margin-top: 5px;
    text-align: left;
}

.search-button {
    padding: 3px;
    background-color: #23c0e9ff;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #428bca;
}

/* Tabela */
.table-section {
    background-color: white;
    padding: 20px;
    border-radius: 3px;
    text-align: center;
    margin-bottom: 20px;
}

/* Estilize o título da tabela */
.table-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Estilize o contêiner da tabela */
.table-container {
    overflow-x: auto; /* Adicione uma barra de rolagem horizontal se necessário */
}

/* Estilize a tabela */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

/* Estilize as células do cabeçalho */
th {
    font-family: Arial, "sans-serif";
    font-weight: bold;
    border-bottom: 3px solid #ddd;
    padding: 6px;
    text-align: left;
}

/* Estilize as células de dados */
td {
    font-family: Arial, "sans-serif";
    padding: 6px;
    text-align: left;
}

.ucsc-icon {
    display: inline-block;
    padding: 5px 10px;
    background: linear-gradient(to bottom, #132452, black);
    color: white;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #132452;
}


/* Estilize a tabela para telas menores (responsiva) */
@media (max-width: 768px) {
    table {
        font-size: 14px; /* Reduza o tamanho da fonte para telas menores */
    }
}

/* footer */
.footer {
    background-color: #34394afd;
    color: white;
    text-align: right;
    padding: 10px 0;
}

.footer-content {
    width: 100%;
}

.footer-text {
    font-size: 13px;
}

.footer-link {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .carousel-text-below {
        flex-direction: column; /* Empilhar conteúdo verticalmente */
        align-items: center; /* Centralizar elementos verticalmente */
        text-align: center; /* Centralizar texto */
    }

    .carousel-image {
        margin-top: 20px; /* Espaçamento entre imagem e texto */
        margin-bottom: 20px; /* Espaçamento entre imagem e texto */
        max-width: 100%; /* Largura máxima para a imagem */
	display: block;
    }

    .keyword-input_mobile {
	width: 250px;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 5px;
    }
}
