.field-validation-error {
    display: none;
    width: 100%;
    margin-top: 6px;
    padding-left: 2px;
    font-size: 14px;
    line-height: 20px;
    color:#00D4AA !important;
}
span.manual-validation-error {
    font-size: 13px !important;
}
.field-validation-error.active {
    display: block;
}


/* ============================================================
   FIELD ERROR STATE
============================================================ */

.field-error {
    border-color: #ff4d4d !important;
}


/* ============================================================
   SELECT ERROR
============================================================ */

select.field-error {
    border-color: #ff4d4d !important;
}


/* ============================================================
   FILE UPLOAD ERROR
============================================================ */

.upload-box.field-error {
    border-color: #ff4d4d !important;
}


/* ============================================================
   OLD GLOBAL ERROR
============================================================ */

#errorMessage {
    display: none !important;
}
        /* Main Container */
        .locations-section {
            max-width: 1200px;
            margin: 30px auto;
            background: #074d52;
            border-radius: 20px;
            padding: 20px 24px 24px;
        }

        /* Map */
        .map-wrapper {
            width: 100%;
            height: 300px;
            overflow: hidden;
            border-radius: 4px;
            background: #eee;

            /* ADDED */
            position: relative;
        }

        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }


        /* ==================================================
           ADDED: RED LOCATION ICON
        ================================================== */

        .map-location-icon {
            position: absolute;

            left: 50%;
            top: 50%;

            width: 42px;
            height: 42px;

            transform:
                translate(-50%, -100%)
                rotate(-45deg);

            background: #e53935;

            border-radius:
                50% 50% 50% 0;

            box-shadow:
                0 2px 5px rgba(0, 0, 0, 0.35);

            z-index: 10;

            pointer-events: none;
        }


        /* Inner circle */

        .map-location-icon::after {
            content: "";

            position: absolute;

            width: 16px;
            height: 16px;

            left: 13px;
            top: 13px;

            background: #c62828;

            border-radius: 50%;
        }


        /* Location Cards */
        .locations-list {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 28px;
            margin-top: 20px;
        }

        .location-card {
            background: #ffffff;
            min-height: 65px;
            border-radius: 5px;
            padding: 13px 15px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            cursor: pointer;
            transition: all 0.25s ease;
            border: 2px solid transparent;
        }

        .location-card:hover {
            transform: translateY(-2px);
        }

        .location-card.active {
            border-color: #ffffff;
            box-shadow: 0 0 0 2px #074d52;
        }

        /* Location Icon */
        .location-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .location-icon svg {
            width: 20px;
            height: 20px;
            stroke: #111111;
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* Card Content */
        .location-content {
            min-width: 0;
        }

        .location-name {
            display: block;
            font-size: 16px;
            line-height: 20px;
            font-weight: 500;
            color: #111111;
            white-space: nowrap;
        }

        .location-installations {
            display: block;
            margin-top: 3px;
            font-size: 14px;
            line-height: 18px;
            color: #304d67;
        }

        /* Tablet */
        @media (max-width: 1000px) {

            .locations-list {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }

        }

        /* Mobile */
        @media (max-width: 700px) {

            .locations-section {
                margin: 15px;
                padding: 12px;
                border-radius: 15px;
            }

            .map-wrapper {
                height: 280px;
            }

            .locations-list {
                display: flex;
                overflow-x: auto;
                gap: 12px;
                padding-bottom: 5px;
            }

            .location-card {
                min-width: 190px;
                flex: 0 0 190px;
            }

            .locations-list::-webkit-scrollbar {
                height: 5px;
            }

            .locations-list::-webkit-scrollbar-track {
                background: transparent;
            }

            .locations-list::-webkit-scrollbar-thumb {
                background: #ffffff;
                border-radius: 10px;
            }
        }