#akabbo-widget-container {
    --akabbo-primary-color: #0066b2;
    max-width: 400px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-family: sans-serif;
}

.ak-header {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.ak-input-group { margin-bottom: 15px; }

.ak-input-group label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.ak-payment-methods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.ak-payment-option {
    align-items: center;
    background: #fff;
    border: 2px solid #d8d8d8;
    border-radius: 14px;
    color: #111;
    cursor: pointer;
    display: flex !important;
    font-size: 14px !important;
    gap: 12px;
    margin: 0 !important;
    min-height: 54px;
    padding: 12px 14px;
}

.ak-payment-option input {
    border: 0;
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#akabbo-widget-container .ak-payment-option input {
    height: 1px;
    padding: 0;
    width: 1px;
}

.ak-payment-indicator {
    align-items: center;
    border: 2px solid #cfcfcf;
    border-radius: 50%;
    box-sizing: border-box;
    display: flex;
    flex: 0 0 26px;
    height: 26px;
    justify-content: center;
    width: 26px;
}

.ak-payment-indicator::after {
    background: #fff;
    border-radius: 50%;
    content: "";
    height: 8px;
    opacity: 0;
    width: 8px;
}

.ak-payment-option.is-selected,
.ak-payment-option:has(input:checked) {
    background: #eef2ff;
    background: color-mix(in srgb, var(--akabbo-primary-color) 10%, white);
    border-color: var(--akabbo-primary-color);
}

.ak-payment-option.is-selected .ak-payment-indicator,
.ak-payment-option:has(input:checked) .ak-payment-indicator {
    background: var(--akabbo-primary-color);
    border-color: var(--akabbo-primary-color);
}

.ak-payment-option.is-selected .ak-payment-indicator::after,
.ak-payment-option:has(input:checked) .ak-payment-indicator::after {
    opacity: 1;
}

.ak-amount-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 10px;
}

.ak-amount-option {
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff !important;
    color: var(--akabbo-primary-color) !important;
    cursor: pointer;
    font-weight: bold;
    padding: 9px 8px;
}

.ak-amount-option:hover,
.ak-amount-option.is-selected {
    border-color: var(--akabbo-primary-color);
    background: var(--akabbo-primary-color) !important;
    color: #fff !important;
}

.ak-amount-field {
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 12px;
    display: flex;
    gap: 10px;
    padding: 5px 12px;
}

.ak-currency-prefix {
    background: color-mix(in srgb, var(--akabbo-primary-color) 10%, white);
    border-radius: 8px;
    color: var(--akabbo-primary-color);
    flex: 0 0 auto;
    font-weight: bold;
    padding: 10px 14px;
}

#akabbo-widget-container .ak-amount-field input {
    border: 0;
    border-radius: 0;
    flex: 1;
    min-width: 0;
    padding: 10px 0;
}

#akabbo-widget-container .ak-amount-field input:focus {
    box-shadow: none;
    outline: none;
}

#akabbo-widget-container input, 
#akabbo-widget-container textarea,
#akabbo-widget-container select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

.ak-row { display: flex; gap: 10px; margin-top: 10px; margin-bottom: 20px; }

#ak-submit-btn {
    width: 100%;
    background-color: var(--akabbo-primary-color) !important;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

#ak-submit-btn:hover { filter: brightness(0.9); }

#ak-submit-btn:disabled,
#ak-submit-btn.is-processing {
    cursor: not-allowed;
    opacity: 0.7;
}

#ak-status-message { margin-top: 10px; font-size: 13px; text-align: center; }

.ak-status-processing {
    color: green !important;
    font-weight: 700;
}

.ak-powered-by {
    margin-top: 12px;
    color: #777;
    font-size: 12px;
    text-align: center;
}

.ak-powered-by a {
    color: #0066b2 !important;
    font-weight: bold;
    text-decoration: none;
}

.ak-powered-by a:hover {
    text-decoration: underline;
}

@media (max-width: 420px) {
    .ak-payment-methods {
        grid-template-columns: 1fr;
    }
}

#ak_amount{
    font-size: 20px !important;
}
