.lc-container {
  display: flex;
  align-items: stretch;
  gap: 40px;
  padding: 40px;
  border-radius: 8px;
  max-width: 1100px;
  margin: auto;
}

.transfer-heading {
  text-align: center;
  color: #666666 !important;
}

.lc-balance-box,
.lc-transfer-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lc-balance {
  background: #eaf6ff;
  padding: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lc-flip-number {
  width: 70px;
  height: 90px;
  background: linear-gradient(to bottom, #ffffff, #dfe3e8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Number styling */
.lc-flip-text {
  font-size: 64px;
  font-weight: bold;
  color: #2c9f3c; /* green */
  line-height: 1;
}

/* Horizontal middle line */
.lc-flip-number::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
}

.lc-balance-unit {
  font-size: 16px;
  color: #2c9f3c;
  margin-bottom: 20px;
}

.lc-divider {
  width: 1px;
  background: #ccc;
  height: auto;
}

.transfer-button-container {
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .lc-container {
    flex-direction: column;
    text-align: center;
  }
  .lc-divider {
    display: none;
  }
}
