.payment-options-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.payment-title {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
}

.payment-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.payment-method {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    border-color: #4a6cf7;
}

.payment-icon img {
    max-width: 80px;
    max-height: 50px;
    margin-bottom: 10px;
}

.payment-name {
    font-weight: bold;
    color: #333;
}

.payment-instructions {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.default-message {
    text-align: center;
    color: #666;
}

.method-instructions {
    display: none;
}

.instructions-title {
    color: #4a6cf7;
    margin-bottom: 15px;
}

.instructions-content {
    margin-bottom: 20px;
    line-height: 1.6;
}

.open-app-button, .copy-email-button {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.open-app-button {
    background: #4a6cf7;
    color: white;
}

.open-app-button:hover {
    background: #3a5bd9;
}

.copy-email-button {
    background: #f1f1f1;
    color: #333;
}

.copy-email-button:hover {
    background: #e1e1e1;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}