/* General */
body {
  font-family: 'SF Pro Display', sans-serif;
  background: linear-gradient(180deg, #FFFFFF 5%, #8CD9F1, #8CD9F1);
  color: #333;
  /* margin: 0; */
  margin: auto;
  margin-top: 5%;
  padding: 0;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  height: 100vh;
  max-width: 1290px;
}

.container {
  background-color: #FFFFFF;
}

.main-container {
  text-align: center;
  background-color: transparent;
  padding: 20px;
  width: 90%;
  /* max-width: 400px; */
  border-radius: 10px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

h1 {
  font-family: 'SF Pro Display', sans-serif;
  font-weight: bold;
  color: #DC1C1C;
  font-size: 2rem;
  margin-bottom: 20px;
}

h2 {
  font-family: 'SF Pro Display', sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 20px;
}

/* Relief Details */
.relief-details {
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: 20px;
  /* display: flex;
  flex-direction: column; */
  gap: 20px; /* Espaciado entre filas */
}

.relief-details > div {
  position: relative;
  /* display: flex;
  justify-content: space-between; */
  /* align-items: center; */
  /* padding: 3% 5%; */
}

.relief-details > div::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  border-bottom: 1px solid #e0e0e0;
  visibility: hidden; /* Oculto por defecto */
  transition: visibility 0.3s ease-in-out; /* Transición para suavizar */
}

.relief-details > div.visible-after::after {
  visibility: visible; /* Se muestra cuando el contenedor tiene la clase */
}


.relief-details > div:last-child::after {
  content: none; /* Elimina la línea del último elemento */
}

.relief-details .label {
  font-size: 1rem;
  color: #333;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
                                                
}

.relief-details .value {
  color: #12765B;
  font-weight: bold;
  font-size: 1rem;
  font-family: 'SF Pro Display', sans-serif;
                                                
}

/* Ocultar elementos por defecto */
.hidden {
  visibility: hidden;
  display: none;
}

/* Botón */
button {
  background-color: #DC1C1C;
  color: white;
  font-family: 'SF Pro Display', sans-serif;
  font-weight: bold;
  border: none;
  padding: 15px 20px;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 20px;
  width: 100%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}

button:hover {
  background-color: dark#DC1C1C;
}

/* Mensaje de "Checking..." */
.checking-message {
  font-size: 1rem;
  color: blue;
  font-weight: bold;
  text-align: left;
  /* margin: 10px 0; */
}

/* Total Removed Box */
.total-removed-box {
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  padding: 7% 5%;
  display: flex;
  justify-content: space-between;


}

.total-removed-box p {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #333;
  font-weight: bold;
  font-family: 'SF Pro Display', sans-serif;
                                                
}

.total-removed-box .value {
  font-size: 1.2rem;
  color: #12765B;
  font-weight: bold;
  font-family: 'SF Pro Display', sans-serif;
                                                
}

.total-removed-box .label {
  font-size: 1.2rem;
  color: #000000;
  font-weight: bold;
  font-family: 'SF Pro Display', sans-serif;
                                                
}

.options {
  display: flex;
  justify-content: space-between;

}


/* Animación de desvanecimiento y deslizamiento hacia abajo */
/* Aplica el padding 3% 5% */
.with-padding {
  padding: 3% 5%;
}

/* Efecto "slide-in" con transición */
.slide-in {
  /* Estado inicial */
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

/* Estado final */
.slide-in.show {
  opacity: 1;
  transform: translateY(0);
}


/* Líneas divisorias */
.relief-details > div::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  border-bottom: 1px solid #e0e0e0;
  visibility: hidden; /* Oculto por defecto */
  transition: visibility 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.relief-details > div.visible-after::after {
  visibility: visible; /* Muestra la línea cuando tiene esta clase */
  opacity: 1;
}

.label, .value {
  visibility: hidden;
}


/* checking-message: color base #46C2E8 */
.checking-message {
  color: #46C2E8; 
  /* margin: 10px 0 10px !important; */
  align-self: center;
  font-family: 'SF Pro Display', sans-serif;
}

/* Definimos la animación para el blink */
@keyframes shortBlink {
  0%   { color: #46C2E8; }
  50%  { color: #8CD9F1; }
  100% { color: #46C2E8; }
}

/* Clase que activa el blink */
.short-blink {
  animation: shortBlink 0.5s; /* Duración 0.5s, puedes ajustarlo */
}

.container-slide-in{
  transition: transform 0.4s ease, opacity 0.4s ease, padding-bottom 0.4s ease;
}

.aligned {}

