
.payment-option {
  transition: border-color 0.2s, background-color 0.2s;
}

.payment-option:hover {
  border-color: #0d6efd;
  background-color: rgba(13, 110, 253, 0.05);
}


.payment-instructions {
    border-width: 2px;
  }
  
  .instruction-list {
    list-style: none;
    padding-left: 0;
  }
  
  .instruction-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    font-size: 1.2rem;
  }
  
  .instruction-list li {
    border-left: 3px solid #0d6efd;
    padding-left: 15px;
    transition: all 0.3s ease;
  }
  
  .instruction-list li:hover {
    border-left-width: 5px;
    background-color: rgba(13, 110, 253, 0.05);
  }

  .amount-highlight {
            background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
            padding: 40px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            z-index: 2;
        }
        
        .amount-highlight::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #ff9a9e, #fad0c4, #ff9a9e);
            background-size: 200% auto;
            animation: gradientMove 3s linear infinite;
        }

        .amount-label {
            font-size: 1.3rem;
            font-weight: 600;
            color: #5a5a5a;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .amount-display {
            font-size: 2.5rem;
            font-weight: 800;
            color: #2c3e50;
            line-height: 1;
            margin: 5px 0;
            position: relative;
            display: inline-block;
        }
        
        .amount-display::after {
            content: "";
            position: absolute;
            bottom: 10px;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
            border-radius: 50%;
            filter: blur(2px);
        }
        
        .currency {
            font-size: 2.5rem;
            vertical-align: top;
            margin-right: 5px;
            color: #e74c3c;
        }
        