/* app/assets/stylesheets/billing.css */

.billing-container {
  max-width: 800px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #2d3748;
}

.billing-header {
  margin-bottom: 30px;
  text-align: center;
}

.billing-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: #2b6cb0;
  margin-bottom: 10px;
  border-bottom: none !important; /* Override admin default */
}

.billing-header p {
  color: #718096;
  font-size: 16px;
}

.billing-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.1);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.current-credits {
  margin-bottom: 40px;
  background: #ebf8ff;
  padding: 20px 40px;
  border-radius: 8px;
  border: 1px solid #bee3f8;
}

.credit-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4a5568;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

.credit-amount {
  font-size: 48px;
  font-weight: 800;
  color: #2b6cb0;
  line-height: 1;
}

.purchase-section {
  width: 100%;
  max-width: 400px;
  border-top: 1px solid #edf2f7;
  padding-top: 30px;
}

.purchase-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #4a5568;
}

/* Professional Button Style */
.btn-primary-large {
  display: inline-block;
  width: 100%;
  padding: 15px 25px;
  background: linear-gradient(135deg, #3182ce 0%, #2b6cb0 100%);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(49, 130, 206, 0.3);
  text-decoration: none;
}

.btn-primary-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(49, 130, 206, 0.4);
  background: linear-gradient(135deg, #4299e1 0%, #2c5282 100%);
}

.btn-primary-large:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(49, 130, 206, 0.3);
}

.billing-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  font-size: 14px;
  color: #718096;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.feature-icon {
  color: #38a169;
}
