/* Дополнительные стили для лучшего отображения автокомплита */
.ui-autocomplete {
    z-index: 9999 !important;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #ccc;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-buttons-size {
    font-size: 14px !important;
    min-width: 160px !important;
}

@media (max-width: 600px) {
    .modal-buttons-size {
        font-size: 11px !important;
        margin: 0 !important;
        min-width: 130px !important;
    }
}

/* Контейнер для центрирования iframe */
.iframe-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

/* iframe адаптивный */
#payFrame {
    width: 100%;
    max-width: 600px; /* максимум для больших экранов */
    height: 100%;
    max-height: 600px;
    border: none;
}

/* Мобильные устройства */
@media (max-width: 768px) {
    #payFrame {
        width: 100%;
        height: 100vw; /* квадрат по ширине экрана */
        max-height: none;
    }
}

/* Большие экраны */
@media (min-width: 769px) {
    #payFrame {
        width: 600px;
        height: 600px;
    }
}

.quick_order_btn {
    background: linear-gradient(45deg, #28a745, #20c997);
    border-radius: 8px;
    padding: 8px 12px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
}