/* Development Payment Mode Styles */

.development-payment-mode {
    padding: 20px;
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    margin: 20px 0;
}

.dev-notice {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 8px;
}

.dev-notice h4 {
    color: #ffc107;
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.dev-notice p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9em;
}

.dev-payment-options {
    margin: 20px 0;
}

.dev-payment-options h5 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1em;
}

.payment-method-option {
    display: flex;
    align-items: center;
    padding: 15px;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.payment-method-option.selected {
    background: rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.payment-method-option i {
    font-size: 1.5em;
    margin-right: 15px;
    width: 30px;
    text-align: center;
    color: #4CAF50;
}

.payment-method-option span {
    font-weight: 600;
    color: #fff;
    margin-right: 10px;
}

.payment-method-option small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8em;
    margin-left: auto;
}

.dev-instructions {
    margin-top: 20px;
    padding: 15px;
    background: rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(33, 150, 243, 0.3);
    border-radius: 8px;
}

.dev-instructions h5 {
    color: #2196F3;
    margin: 0 0 10px 0;
    font-size: 0.9em;
}

.dev-instructions ol {
    margin: 0;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8em;
}

.dev-instructions li {
    margin: 5px 0;
}

.dev-methods-info {
    padding: 15px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 8px;
    margin-top: 15px;
}

.dev-methods-info p {
    margin: 0 0 10px 0;
    color: #4CAF50;
    font-weight: 600;
}

.dev-methods-info ul {
    margin: 0;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.dev-methods-info li {
    margin: 5px 0;
    font-size: 0.9em;
}

/* Button loading state for development */
.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Success notification styles */
.notification.success {
    background: rgba(76, 175, 80, 0.9);
    border-left: 4px solid #4CAF50;
    color: white;
}

.notification.success .notification-icon {
    color: #4CAF50;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .development-payment-mode {
        padding: 15px;
        margin: 15px 0;
    }
    
    .payment-method-option {
        padding: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .payment-method-option i {
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .payment-method-option small {
        margin-left: 0;
        margin-top: 5px;
    }
}