    .quote-modal {
        position: fixed;
        inset: 0;
        z-index: 999999;
        /* left: 0; */
        /* top: 0; */
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        justify-content: center;
        align-items: flex-start;
        padding-top: 40px;
        overflow-y: auto;
    }

    .quote-modal-content {
        background: #fff;
        width: 700px;
        max-width: 90%;
        margin: 5% auto;
        padding: 20px;
        border-radius: 6px;
        position: relative;
        max-height: 80vh;
        overflow-y: auto;
    }

    .quote-modal-close {
        position: absolute;
        right: 15px;
        top: 10px;
        font-size: 24px;
        cursor: pointer;
    }

    .quote-modal-hide {
        display: none;
    }

    .quote-modal-content table {
        border-collapse: collapse;
        width: 100%;
    }

    .quote-modal-content th,
    .quote-modal-content td {
        padding: 12px;
    }