.elementor-7735 .elementor-element.elementor-element-9cb054d{--display:flex;}.elementor-7735 .elementor-element.elementor-element-c24f337{--display:flex;}.elementor-7735 .elementor-element.elementor-element-3ec61ae{--display:flex;}.elementor-7735 .elementor-element.elementor-element-ebb1b90{--display:flex;}/* Start custom CSS *//* Effectively 'hides' the blue geolocation dot by making it invisible */
img[src*="me-pin.png"], 
img[src*="spotlight-po"],
.asl-location-dot {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}
/* Prevent the form from shrinking when fields are hidden */
.wpcf7-form {
    min-width: 350px; /* Adjust this to match your desired width */
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

#coverage-status-text {
    width: 100%;
    box-sizing: border-box; /* Ensures padding doesn't push the width out */
}
/* Ensure all elements calculate width correctly */
#form-fields-container *, .coord-inputs * {
    box-sizing: border-box;
}

/* Clean up input styling */
#form-fields-container input[type="text"], 
#form-fields-container select,
.coord-inputs input {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 4px;
    background: #222; /* Matching your dark theme */
    color: #fff;
    margin-top: 5px;
}

/* Fix for file inputs sticking out */
.custom-file-upload {
    background: #1a1a1a;
    border: 2px dashed #444;
    padding: 20px;
    border-radius: 8px;
    width: 100%; /* Forces it to stay inside container */
}

.custom-file-upload input[type="file"] {
    max-width: 100%;
    color: #888;
}

/* Submit Button */
input.wpcf7-submit {
    width: 100%;
    background-color: #005a87;
    color: white;
    font-weight: bold;
    border: none;
    padding: 16px;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
}


/* Tooltip Container */
.usage-tooltip {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: #005a87;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    cursor: help;
    margin-left: 5px;
    position: relative;
}

/* Tooltip Text (Hidden by default) */
.usage-tooltip .tooltiptext {
    visibility: hidden;
    width: 220px;
    background-color: #333;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 100;
    bottom: 125%; /* Position above the icon */
    left: 50%;
    margin-left: -110px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 13px;
    line-height: 1.4;
    border: 1px solid #444;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.5);
}

/* Show tooltip on hover */
.usage-tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Prevent validation messages from shifting the layout */
#form-fields-container .wpcf7-form-control-wrap {
    position: relative;
    display: block;
}

#form-fields-container .wpcf7-not-valid-tip {
    position: absolute;
    top: 100%;
    left: 0;
    font-size: 11px;
    line-height: 1;
    margin-top: 2px;
    z-index: 10;
    white-space: nowrap;
}

/* Add extra bottom margin to rows to make room for the floating error text */
#form-fields-container .wpcf7-form-control {
    margin-bottom: 18px !important;
}

/* Force the 22px size on all modal list items */
#modal-content li {
    font-size: 22px !important;
    line-height: 1.4 !important;
    margin-bottom: 4px !important;
    list-style: none !important;
    display: block !important;
}

/* Specific Tier Colors */
#modal-content li.plus-extra {
    color: #3498db !important; /* Blue */
}

#modal-content li.elite-extra {
    color: #f1c40f !important; /* Gold */
}

#modal-content li.basic-channel {
    color: #eeeeee !important; /* White */
}

/* Mobile Optimization for Channel Modal */
@media (max-width: 768px) {
    /* 1. Reset columns to a single vertical list */
    #modal-content ul {
        column-count: 1 !important;
        column-gap: 0 !important;
    }

    /* 2. Shrink text slightly so long names don't wrap */
    #modal-content li {
        font-size: 18px !important; 
        line-height: 1.8 !important;
        white-space: normal !important; /* Allow wrapping if a name is very long */
        padding-bottom: 5px;
        border-bottom: 1px solid #222; /* Adds a faint line between channels for readability */
    }

    /* 3. Adjust modal padding and header size */
    #channel-modal .modal-inner {
        padding: 20px !important;
        width: 90vw !important;
    }

    #modal-content h4 {
        font-size: 20px !important;
        line-height: 1.2 !important;
    }
}/* End custom CSS */