.mcp-payment-form {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: Arial, sans-serif;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.currency-input {
    position: relative;
}

.currency-symbol {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
}

#amount {
    padding-left: 30px;
}

.mcp-payment-form button[type="submit"] {
    width: 100%;
    padding: 1rem;
    background: #47143d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.currency-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.currency-button {
    flex: 1;
    min-width: 60px;
    padding: 0.8rem;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.currency-button:hover {
    background: #47143d;
    color: white;
    border-color: #47143d;
}

.currency-button.active {
    background: #47143d;
    color: white;
    border-color: #47143d;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}