[class="wc_payment_method payment_method_paycell_gateway"] img {
    float: none !important;
    margin: 1rem 0 0;
    display: block;
    max-height: 32px !important;
}

.paycell-alert {
    text-align: center;
    padding: 1rem;
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

#paycell_payment_form {
    /*height:calc(100vh + 100px)*/
    height: 858px;
}

#paycell_payment_form iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

.paycell-card-brands-icon{
    height: 40px !important;
}

.paycell-icon{
    height: 40px !important;
    margin-right: 10px !important;
}
/* Paycell Payment Gateway - Expiry Fields Styling */
.paycell-expiry-fields-container {
    display: flex;
    gap: 8px;
    align-items: stretch; /* Ensures all children are the same height */
    margin-bottom: 15px;
}

.paycell-expiry-fields-container .form-row {
    flex: 1;
    margin-bottom: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.paycell-expiry-fields-container label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 14px;
}

.paycell-expiry-fields-container select,
.paycell-expiry-fields-container input[type="text"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 15px;
    line-height: 1.4;
    box-sizing: border-box;
    appearance: none;
    min-height: 40px;
    height: 100%;
}

.paycell-expiry-fields-container select {
    padding-right: 28px;
}

.paycell-expiry-fields-container select:focus,
.paycell-expiry-fields-container input[type="text"]:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 1px #007cba;
}

@media (max-width: 768px) {
    .paycell-expiry-fields-container {
        flex-direction: column;
        gap: 12px;
    }
    .paycell-expiry-fields-container .form-row {
        flex: 1;
    }
}