/* Main styling for gcPanel payment page */

/* Card header gradient background */
.card-header {
  background: linear-gradient(135deg, #4e54c8, #8f94fb);
}

/* Feature checkmark styling */
.feature-check {
  color: #4e54c8;
  font-size: 1.2rem;
}

/* Primary button styling */
.btn-primary {
  background-color: #4e54c8;
  border-color: #4e54c8;
  transition: all 0.2s ease;
}

.btn-primary:hover, 
.btn-primary:focus {
  background-color: #3a3f9e;
  border-color: #3a3f9e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(78, 84, 200, 0.3);
}

/* Price tag styling */
.price-tag {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  background-color: rgba(78, 84, 200, 0.1);
}

/* Card styling */
.card {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Loading spinner customization */
.spinner-border {
  color: #4e54c8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .card-header h1 {
    font-size: 1.8rem;
  }
  
  .price-tag .display-5 {
    font-size: 2rem;
  }
}
