
.city {
    font-weight: bold;
    margin-top: 5px;
}

.person {
    padding: 2px 0;
	background-color: #97BD5E;
}

.person:hover {
    background-color: #BDA25E;
}

body {
            margin: 0;
            padding: 0;
            display: flex;
            height: 100vh;
            font-family: Arial, sans-serif;
        }

#sidebar-container {
            width: 270px;
            overflow-y: auto;
            padding: 10px;
            background-color: #f5f5f5;
            border-right: 1px solid #ccc;
			overflow-y: auto; 
        }

#map {
            flex: 1;
        }


#sidebar-selector {
    display: flex;
    align-items: center; /* κάθετη στοίχιση στο κέντρο */
    justify-content: flex-start; /* στοίχιση αριστερά */
    gap: 8px; /* μικρό κενό ανάμεσα σε label και select */
    margin-bottom: 15px;
	overflow-y: auto;
}

#sidebar-header {
    text-align: center;
    padding: 10px;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
	overflow-y: auto;
}

#sidebar-logo {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
	overflow-y: auto;
}

#sidebar-mode {
    display: block;
    margin: 10px auto; /* Center horizontally */
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #bbb;
    background: linear-gradient(to right, #d4fc79, #96e6a1);
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
	overflow-y: auto;
}

#sidebar-mode:hover {
    background: linear-gradient(to right, #96e6a1, #d4fc79);
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}


