.container{
        width: 100% !important;
        max-width: 100% !important;
    }
    .btn_find,.btn-add-cart{
        padding: 5px 10px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        /*margin-top: 5px;*/
    }
    @keyframes blink {
        0% { opacity: 1; }
        50% { opacity: 0.5; }
        100% { opacity: 1; }
    }

    .taxiway {
        animation: blink 1s infinite alternate;
        cursor: pointer;
    }
    .taxiway::after{
        content: "You can drag to place taxiway";
        position: absolute;
        top: 0;
        left: 0;
        color: white;
        font-size: 12px;
    }

    .main-calculator-flex {
        display: flex;
        flex-direction: row;
        align-content: center;
        justify-content: center;
        align-items: stretch;
        gap: 50px;
        flex-wrap: nowrap;
        width: 100%;
    }

    .drawer{
        /*flex-basis: 100%;*/
        display: flex;
        justify-content: center;
        align-items: center;
    }

    @media (max-width: 768px) {
        .main-calculator-flex {
            flex-direction: column;
        }
    }

    .calculator-header{
        text-align: center!important;
        width: 100%;
    }
    .readonly-var{
        background-color: #dbdbdbc2!important;
    }

    #runway_input, #runway_variable {
        max-width: 500px;
        margin: 20px auto;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 8px;
        background: #f9f9f9;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: space-around;
        align-items: flex-start;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
    }

    .form-group label {
        font-weight: bold;
        margin-bottom: 5px;
        color: #333;
    }

    .form-group input {
        padding: 8px;
        border: 1px solid #aaa;
        border-radius: 5px;
        font-size: 16px;
        outline: none;
        transition: border 0.3s ease-in-out;
    }

    .form-group input:focus {
        border-color: #007bff;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
    }

    #runway_result {
        margin: 30px auto;
        max-width: 800px;
    }

    #runway_result table {
        width: 100%;
        border-collapse: collapse;
        background: #fff;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
    }

    #runway_result table,
    #runway_result th,
    #runway_result td {
        border: 1px solid #ddd;
        padding: 10px;
        text-align: center;
    }

    #runway_result th {
        background: #007bff;
        color: #fff;
        font-weight: bold;
    }

    #runway_result tr:nth-child(even) {
        background: #f2f2f2;
    }

    #runway_result tr:hover {
        background: #e9ecef;
    }

    @media (max-width: 600px) {
        #runway_input, #runway_variable {
            max-width: 90%;
        }

        #runway_result table {
            font-size: 14px;
        }
    }
    .snap-point, .vasi-snap-point {
        display: none;
        animation: blink 0.5s infinite alternate;
    }
    .drag-text{
        animation: blink 2s infinite alternate;
    }