html,
body,
#app {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Source Sans Pro', sans-serif;
}

/* If you have a main element that needs 100% height, include it here */
#main {
  height: 100%;
}

/* If you are using the .app class, it should be styled as well */
.app {
  height: 100%;
}

/* The content class will control the content within your application */
.content {
  height: 100%;
}

/* This should match the ID of your MapContainer component */
#map {
  height: 100%; /* This should be 100% if you want the map to fill the container */
  width: 100%;
}

.selectedRow {
  background-color: rgb(138, 190, 90); /* Wybrany kolor dla wybranego wiersza */
}