

        .divRow {
            display: flex;
            width: 100%;
        }

        .columns {
            padding: 10px;
            box-sizing: border-box;
            flex-grow: 1;
        }

        .wider-column {
            flex-basis: 70%;
            /* Adjust the width of the wider column as desired */
        }

        .narrower-column {
            flex-basis: 30%;
            /* Adjust the width of the narrower column as desired */
            text-align: end;
        }

        .info-text p {
            margin-top: 0px;
            display: inline;
        }

        .column {
            flex: 1;
            padding: 20px;
            box-sizing: border-box;
        }

        .column:nth-child(1) {}

        .column:nth-child(2) {}

        .inner-div {
            background-color: white;
            border-radius: 10px;
            padding: 10px;
        }

        .button-container {
            background-color: rgb(230, 230, 230);
            border-radius: 30px;
			padding: 5px;
			display: flex;
        }

        .activeCoverageButton {
            height: 40px;
            width: 48%;
            border-radius: 50px;
            background: rgb(24, 0, 255);
            color: rgb(255, 255, 255);
            padding: 0px 28px;
            border: 1.25px solid transparent;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
        }

        .notActiveBtn {
            background-color: transparent;
            width: 50%;
            border: none;
            height: 40px;
            padding: 0px 28px;
            font-size: 16px;
            color: rgb(24, 0, 255);
            font-weight: 600;
            cursor: pointer;

        }

        .mapsborder {
            border: 1px solid rgb(75, 75, 75);
            border-radius: 16px;
            margin-top: 20px;
        }

        .mapsimage {
            border-radius: 16px;
        }

        .mapsimage {
            border-radius: 16px;
            width: 100%;
            /* Make the image width 100% */
            height: auto;
            /* Maintain aspect ratio */
        }

        .columns-wrapper {
            display: flex;
            justify-content: space-between;
            padding: 10px;
        }

        .column-small {
            display: flex;
            align-items: center;
            flex: 0.7;
            padding: 10px;
            box-sizing: border-box;
        }

        .ultra {
            margin-bottom: 4px;
            width: 16px;
            height: 16px;
            margin-right: 6px;
            border: 1px solid rgb(110, 110, 110);
            border-radius: 4px;
            background-color: rgb(193, 244, 234);
            font-size: 16px;
            letter-spacing: 0.1px;
        }

        .nationalWideBox {
            margin-bottom: 4px;
            width: 16px;
            height: 16px;
            margin-right: 6px;
            border: 1px solid rgb(110, 110, 110);
            border-radius: 4px;
            font-size: 16px;
            letter-spacing: 0.1px;
            background-color: #1800FF;
        }

        .noCoverageBox {
            margin-bottom: 4px;
            width: 16px;
            height: 16px;
            margin-right: 6px;
            border: 1px solid rgb(110, 110, 110);
            border-radius: 4px;
            font-size: 16px;
            letter-spacing: 0.1px;
            background-color: rgb(245, 245, 245);
        }

        .column-small-wide {
            display: flex;
            align-items: center;
            flex: 0.9;
            /* Reduce the width of the second column */
            padding: 10px;
            box-sizing: border-box;
        }

        .column-small-narrow {
            display: flex;
            align-items: center;
            flex: 0.6;
            /* Reduce the width of the third column */
            padding: 10px;
            box-sizing: border-box;
        }

        .info-text-mobile {
            display: none;
        }

        .info-text-mobile p {
            display: inline;
        }

       /* .tooltip {
            position: relative;
            display: inline-block;
            box-sizing: border-box;
        }

        .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
            box-sizing: border-box;
        }

        .tooltiptext {
            visibility: hidden;
            background-color: white;
            color: black;
            padding: 20px 12px;
            border-radius: 4px;
            position: absolute;
            z-index: 1;
            top: 100%;
            left: 50%;
            transform: translateX(-80%);
            opacity: 0;
            transition: opacity 0.3s ease;
            width: 200px;
            font-size: 12px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.06);
            box-sizing: border-box;
            text-align: left;
        }
*/

        @media screen and (max-width: 768px) {


            .column {
                padding: 10px;
            }

            .button-container {
                width: 98%;
            }

            .columns-wrapper {
                display: block;
                justify-content: space-between;
                padding: 10px;
            }

            .column-small,
            .column-small-wide,
            .column-small-narrow {
                width: 100%;
                padding: 0px;
                /* Occupying 100% width on mobile devices */
            }

            .column-small p,
            .column-small-wide p,
            .column-small-narrow p {
                margin-top: 10px;
                margin-bottom: 10px;
            }

            .narrower-column {
                display: none;
            }

            .wider-column {
                flex-basis: 100%;
            }

            .info-text-mobile {
                display: block;
                margin-top: 1em;
                margin-left: 0.6em;
            }
}

/*            .tooltiptext {
                visibility: hidden;
                background-color: white;
                color: black;
                padding: 20px 12px;
                border-radius: 4px;
                position: absolute;
                z-index: 1;
                top: 100%;
                left: 50%;
                transform: translateX(-30%);
                opacity: 0;
                transition: opacity 0.3s ease;
                width: 200px;
                font-size: 12px;
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.06);
                box-sizing: border-box;
                text-align: left;
            }
          
        }
*/

