#ebi-result-container {
    padding: 1rem 0;
    background: #636a80;;
    max-width: 100%;
    margin: 0;
    display: none;
    /* Ocultar por defecto */
	margin-top: 0 !important; 
	/* Remover margen innecesario */
	width: 100%;
	overflow-x: auto;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

#ebi-result-container table {
    width: 100%;
    text-align: center;
    border: none;
}

#ebi-result-container tr{
	border: none;
}

#ebi-result-container th,
#ebi-result-container td {
    padding: 0.5rem;
    /* border-bottom: 1px solid #0056ff; */
    /* Línea horizontal azul eléctrico */
	border: none;
}

#ebi-result-container th {
    font-weight: normal;
    background-color: transparent;
    /* Sin fondo gris */
    vertical-align: middle;
    text-align: center;
}

#ebi-result-container td {
    font-size: 0.9rem;
    font-weight: normal;
    /* No en negrita */
  	justify-content: center;
  	align-items: center;
	height: 40px;
}

#ebi-result-container div{
	background: white;
	height: inherit;
	display: flex;
	align-items: center;
	justify-content: center;
	
	
}

#ebi-result-container div p{
		margin: 0;	
	}

#ebi-result-container img {
    max-width: 50px;
    height: auto;
    display: block;
    margin: 0 auto;
}

#ebi-calculate-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
	transition: background-color 0.3s;
}

#ebi-calculate-btn:hover {
    background-color: #0056b3;
}

@media (max-width: 675px) {
	#ebi-calculator-form{
		justify-content: center;
	}
	#valor{
		min-width: 150px;
	}
	#ebi-title{
		font-size: x-large;
		text-align: center;
	}
}

@media (min-width: 675px) {
	#ebi-calculator-form{
		justify-content: start;
	}
	#valor{
		min-width: auto;
	}
	#ebi-title{
		font-size: xx-large;
	}
}

