.wc_payment_methods .payment-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

/* .payment-options label {
    background-color: #006837;
    color: white;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    min-width: 150px;
    max-width: 30%;
    flex: 1 1 30%;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
} */

.payment-options label[for^="payment_method_"] {
    flex: 1 1 30% !important;
    max-width: 30% !important;
    min-width: unset !important;
    width: auto !important;
    background-color: #006837;
    color: white;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
	box-sizing: border-box;
    transition: all 0.2s ease-in-out;
}

.payment-options label:hover {
    background-color: #004f29;
}

@media (max-width: 768px) {
    .payment-options label {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.wc_payment_methods input[type="radio"] {
    display: none;
}