/* HALAMAN INVOICE */

.invoice-card {
  border-radius: 15px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.invoice-card {
  animation: riseFromCenterButton 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  transform-origin: bottom center;
  opacity: 0;
}

@keyframes riseFromCenterButton {
  0% {
    transform: translateY(120%) scale(0.3);
    opacity: 0;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.invoice-card {
  animation-delay: 0.1s;
}

.invoice-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.invoice-label {
  font-size: 12px;
  color: #666;
  flex: 1;
}

.invoice-value {
  font-size: 13px;
  font-weight: 500;
  text-align: right;
  flex: 1;
  color: #222;
}

.invoice-divider {
  border-top: 1px dashed #ccc;
  margin: 16px 0;
}

.total-amount {
  font-size: 18px;
  font-weight: bold;
  color: #e63946;
  text-align: right;
}

.btn-pay-now {
  display: block;
  width: 100%;
  text-align: center;
  background: #0d0b0b;
  background: linear-gradient(
    90deg,
    rgba(13, 11, 11, 1) 0%,
    rgba(45, 29, 54, 1) 50%,
    rgba(11, 50, 59, 1) 100%
  );
  color: white;
  padding: 14px 0;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(45, 29, 54, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 24px;
}

.btn-pay-now:hover {
  color: white;
  background: #0d0b0b;
  background: linear-gradient(
    90deg,
    rgba(13, 11, 11, 1) 0%,
    rgba(45, 29, 54, 1) 50%,
    rgba(11, 50, 59, 1) 100%
  );
  box-shadow: 0 6px 12px rgba(45, 29, 54, 0.5);
  transform: translateY(-2px);
}
