#easy-pay-voucher-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.easy-pay-voucher-form {
    max-width: 500px;
    margin: 2em auto;
    padding: 25px;
    background: #f47123;
    border-radius: 10px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.easy-pay-voucher-form h2 {
    color: white;
    font-size: 2.5em;
    font-weight: bold;
    margin: 0 0 20px 0;
    text-align: center;
}
.easy-pay-voucher-form h3 {
    color: black;
    font-size: 1.2em;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 10px;
}
.amount-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}
.amount-btn {
    padding: 15px;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}
.amount-btn.selected {
    background: #d4610a;
    color: white;
    border-color: #d4610a;
}
.amount-btn:hover:not(.selected) { background: #f0f0f0; }
.amount-input-container {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
}
.currency {
    color: black;
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
}
#custom-amount {
    border: none;
    outline: none;
    font-size: 18px;
    width: 100%;
    color: black;
    background: transparent;
}
.amount-info, .phone-info {
    color: black;
    font-size: 14px;
    margin: 0 0 20px 0;
}
#phone-number {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 10px;
    box-sizing: border-box;
}
.generate-btn {
    width: 100%;
    padding: 15px;
    background: #2c5aa0;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease;
}
.generate-btn:hover { background: #1e3d6f; }
.generate-btn:disabled {
    background: #999;
    cursor: not-allowed;
}
.voucher-result {
    background: white;
    color: black;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    border-left: 5px solid;
}
.voucher-result.success { border-left-color: #4CAF50; }
.voucher-result.error { border-left-color: #f44336; }
.loading { text-align: center; padding: 20px; color: white; }
.voucher-pin {
    font-size: 24px;
    font-weight: bold;
    color: #2c5aa0;
    text-align: center;
    padding: 15px;
    background: #f0f0f0;
    border-radius: 5px;
    margin: 10px 0;
    word-break: break-all;
}
