/* Swiper Styles */
.mySwiper {
    width: 100%;
    padding: 20px 0;
  }
  
  .swiper-slide {
    width: auto; /* Auto width for responsive behavior */
    margin-right: 10px;
  }
  
  /* Card Styles */
  .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    gap: 1rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background-color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .crypto-logo {
    height: 40px;
    width: 40px;
  }
  
  .crypto-info {
    display: flex;
    flex-direction: column;
  }
  
  .crypto-symbol {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: black;
  }
  
  .crypto-price {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #949494;
  }
  
  .card-footer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .commission-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #949494;
  }
  
  .commission-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: black;
  }

  /* Flechas de Navegación */
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 20px;
  text-shadow: none;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #f0f0f0;
  transform: translateY(-50%) scale(1.1);
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}


#logo {
  position: absolute;
  width: 40px; /* Adjust logo size */
  height: 40px; /* Adjust logo size */
  border-radius: 50%; /* Optional: Makes the logo circular */
  background-color: white; /* Background color behind the logo */
  padding: 5px; /* Padding around the logo */
}

#container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px; /* Adjust size as needed */
  height: 200px; /* Adjust size as needed */
  position: relative;
}


/* Add these styles */
.currency-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.currency-card.active {
  transform: scale(1.02); /* Escala ligeramente el elemento */
}
.blockchain-card.active {
  transform: scale(1.02); /* Escala ligeramente el elemento */
  
}
.currency-card.active .card {
  border: 2px solid #57E465;

}

.blockchain-card.active .card {
  border: 2px solid #57E465;

}