/* Стили для модального окна возврата */
.eu-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.eu-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 550px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.eu-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.eu-modal-close:hover {
    color: #000;
}

.eu-return-table th {
    background: #f9f9f9;
    font-weight: bold;
}