/* Caixa minimizada */
.collapsible-button {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 2rem;
	font-weight: bold;
	border: none;
	margin: 1rem 0 0.5rem 0.5rem;
	color: var(--green-02);
	background-color: var(--white);
	font-family: 'Outfit', sans-serif;
	cursor: pointer;
}

.container-data-genome p span{
	color: var(--purple-02);
}

.description-mtrate p{
	font-size: 1.5rem;
}

.collapsible-button p{
	font-size: 2.5rem;
}
  
.content {
	display: flex;
	flex-direction: column;
	height: 0; 
    overflow: hidden; 
    transition: height 0.8s ease-out; 
}

.notes{
	font-size: 1rem;
}

/* Estilo para a tabela */
.Mutationratetable {
	width: 100%;
	border-collapse: collapse;
	margin: 0 auto; /* Centraliza a tabela */
}

.Mutationratetable th,
.Mutationratetable td {
	border: 0.0625rem solid var(--grey-03);
	padding: 0.5rem;
	text-align: center; /* Centraliza o texto nas células */
	vertical-align: middle; /* Centraliza verticalmente */
}

.Mutationratetable th {
	background-color: var(--white); /* Cor de fundo para o cabeçalho */
}



/* genome preprocessed*/
.container-menu-genome{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	padding: 1rem;
	margin: 1rem 0 1rem 0;

	opacity: 0;
	transform: translate(0, -1rem);
	animation: showElementAnimation .5s ease-in-out 1.8s forwards;
}

.container-data-genome{
	margin: 0 2rem 0 2rem;
  	padding-top: 0;
}

.container-data-genome .title-input{
	margin-top: 1rem;
	font-size: 2.5rem !important;
}

.container-data-genome{
	margin: 1rem 1rem 0 1rem;
	border-radius: 2rem;
	background: var(--white);
	box-shadow: 0px 1px 8px rgb(68, 39, 121);
	padding: 1rem 1.5rem 1rem 1.5rem;

	opacity: 0;
	transform: translate(0, -1rem);

	animation: showElementAnimation .3s ease-in-out 1s forwards;
}

.box-genomes-plants{
	position: relative;
    width: 18.75rem; 
    height: 25rem;
    border-radius: 3rem 0 3rem 0;
    overflow: hidden;

	box-shadow: 0px 1px 8px rgb(83, 8, 172);
	border: 0.15rem solid var(--green-01);
}

.box-genomes-plants img{
	width: 100%;
	height: 100%;
	/* object-fit: cover; Garante que a imagem cubra toda a área	 */
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4); /* Fundo cinza semi-transparente */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
}

.overlay i {
	display: inline-block; /* ou block */
	text-align: center;
}


@media (max-width: 1279px){
	.box-genomes-plants{
		width: 14.75rem;
		height: 19rem;
		text-align: center;
	}

	.description-mtrate p{
		font-size: 1.25rem;
	}
}


@media (max-width: 768px){
	.box-genomes-plants{
		width: 12.75rem;
		height: 16rem;
		text-align: center;
	}

	.Mutationratetable th,
	.Mutationratetable td {
		font-size: 1rem;
	}

	.collapsible-button,
	.collapsible-button p{
		font-size: 1.5rem;
	}

	.container-menu-genome{
		gap: 1rem;
	}

	.overlay{
		font-size: 1rem;
	}

	.description-mtrate p{
		font-size: 1rem;
	}
}


@media (max-width: 480px){
	.box-genomes-plants{
		width: 9.75rem;
		height: 12rem;
		text-align: center;
	}

	.overlay {
		font-size: 1rem;
	}

	.container-data-genome .title-input{
		margin-top: 1rem;
		font-size: 1.5rem !important;
	}

}

@media (max-width: 400px){
	.box-genomes-plants{
		width: 7.5rem;
		height: 8.5rem;

		border-radius: 2rem 0 2rem 0;
	}

	.overlay {
		font-size: 0.8rem;
	}

	.container-data-genome .title-input{
		margin-top: 1rem;
		font-size: 1.5rem !important;
	}

}


