#jazzcash-wallet-container {
    max-width: 600px;
    margin: 2rem auto;
    font-family: sans-serif;
}

#jazzcash-wallet-container h3 {
    text-align: center;
    color: rgba(196, 21, 28, 1);
    margin-bottom: 2rem;
}

.jazzcash-testing-info {
    background-color: #f0f8ff;
    border: 1px solid #d1ecf1;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.jazzcash-testing-info h4 {
    color: #0c5460;
    margin-top: 0;
}

.jazzcash-testing-info ul {
    margin: 0;
    padding-left: 1.5rem;
}

.jazzcash-testing-info li {
    margin-bottom: 0.5rem;
}

.jazzcash-form-wrapper {
    border: 1px solid rgba(196, 21, 28, 0.5);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.form-field-wrapper {
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.form-field-wrapper label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.form-field-wrapper input[type="text"],
.form-field-wrapper input[type="url"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: sans-serif;
    box-sizing: border-box;
}

.form-field-wrapper input[type="text"]:focus,
.form-field-wrapper input[type="url"]:focus {
    outline: none;
    border-color: rgba(196, 21, 28, 0.5);
    box-shadow: 0 0 0 2px rgba(196, 21, 28, 0.1);
}

#submit-wallet-link {
    background: rgba(196, 21, 28, 1);
    border: none;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    font-family: sans-serif;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#submit-wallet-link:hover {
    background: rgba(176, 21, 28, 1);
}

#submit-wallet-link:disabled {
    background: #ccc;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    #jazzcash-wallet-container {
        margin: 1rem;
        max-width: none;
    }
    
    .jazzcash-form-wrapper {
        padding: 1rem;
    }
}