 /* Basic styling for visibility */
        body {
            font-family: sans-serif;
            margin: 0px;
        }
        .search-container {
            margin-bottom: 20px;
        }
        input {
            padding: 10px;
            font-size: 16px;
        }
        button {
            padding: 10px; 
            font-size: 16px;
            cursor: pointer;
            background-color: #e40046;
            color: #ffffff;
            border: none;
            border-radius: 5px;
        }
        /* Style for highlighted matches */
        .highlight {
            background-color: yellow;
            font-weight: bold;
        }

        /* The Close Button */
        .close {
            color: #aaa;
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }