
html, body {
            height: 100%;
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            overflow: hidden; 
        }
        #map {
            height: 100%;
            width: 100%;
        }

        #search-container {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 50; 
            background-color: #fff;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0,0,0,.3);
            display: flex;
            align-items: center;
        }
        #search-input {
            width: 270px; 
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 16px;
        }
        #results-panel {
            z-index: 4; 
            background-color: #fff;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0,0,0,.3);
            width: calc(270px + 10px); 
            max-height: calc(100% - 80px); 
            overflow-y: auto; 
            display: none; 
            font-size: 14px;
            line-height: 1.6;
        }
        #results-panel h3 {
            margin-top: 0;
            color: #333;
            font-size: 18px;
        }
        #results-panel p {
            margin-bottom: 8px;
        }
        #results-panel .sub-event-item {
            cursor: pointer;
            color: #000; 
            text-decoration: underline;
            margin-top: 10px;
        }
        #results-panel .sub-event-item:hover {
            color: #0056b3;
        }
        #results-panel strong {
            color: #000;
        }
        .event-evaluation {
            margin-top: 15px;
            padding-top: 10px;
            border-top: 1px solid #eee;
            color: #555;
            font-style: italic;
        }
        .gm-style .gm-style-iw-c { 
            padding: 10px !important;
        }
        .gm-style .gm-style-iw-d { 
            overflow: hidden !important; 
        }
        .info-window-content {
            font-size: 14px;
            line-height: 1.5;
	    overflow-y: auto;
	    padding-right: 15px;
            max-width: 350px;  
	    max-height: 350px;
    }
        .info-window-content strong {
            font-size: 16px;
        }
        #messageBox {
            position: fixed; 
            top: 5px;
	    display:none; 
            right: 5px;  
            background-color: #e74c3c; 
            color: white; 
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            z-index: 1000;
        }
        #sidebar-wrapper {
            position: fixed;
            top: 80px;
            left: 10px; 
            height: 90%;
            z-index: 1500;
            transition: left 0.3s ease-in-out; 
            display: flex;
        }
		
        #toggle-button {
            width: 20px; 
            height: 60px; 
            background-color: #3498db; 
            position: absolute; 
            left: 310px; 
            top: 50%; 
            transform: translateY(-50%);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            border-top-right-radius: 5px;
            border-bottom-right-radius: 5px;
            box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
            transition: background-color 0.2s, left 0.3s ease-in-out;
        }

        .triangle {
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: none;
	    border-right: 10px solid #fff;
            transition: border 0.3s ease-in-out;
        }

        .sidebar-hidden #sidebar-wrapper {
            left: -310px; 
        }

        .sidebar-hidden #toggle-button {
            border-top-left-radius: 5px; 
            border-bottom-left-radius: 5px;
            border-top-right-radius: 0; 
            border-bottom-right-radius: 0;
        }


        .sidebar-hidden .triangle {
           border-left: 10px solid #fff; 
	   border-right:0px;
        }

