/* === Container principal pentru formularul de plată === */
.mia-pos-payment-form {
    padding: 15px;
    background: #f8f8f8;
    border-radius: 4px;
}

/* === Avertisment Mod Test === */
.mia-pos-test-mode-notice {
    background-color: #fff3cd;
    color: #856404;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ffeeba;
    border-radius: 4px;
    font-size: 14px;
}

/* === Buton de plată === */
.mia-pos-payment-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #0073aa;
    color: #ffffff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.mia-pos-payment-button:hover {
    background-color: #005177;
}

.mia-pos-payment-button:focus {
    outline: 2px solid #004466;
    outline-offset: 2px;
}

.mia-pos-payment-button:disabled,
.mia-pos-payment-button.processing {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.7;
}

/* === Iconiță din stânga butonului === */
.mia-pos-payment-icon {
    height: 24px;
    margin-right: 10px;
}

/* === Spinner de procesare === */
.components-spinner {
    margin-right: 8px;
}

/* === Stiluri responsive pentru mobil === */
@media (max-width: 768px) {
    .mia-pos-payment-button {
        padding: 10px 15px;
        font-size: 14px;
    }

    .mia-pos-payment-icon {
        height: 20px;
    }
}
