@font-face {
  font-family: Myriad;
  src: url(myriad.OTF);
}

/* Add styles for the container */
.selector-container {
  position: absolute;
  bottom: 20px;
  left: 100px;
  display: flex;
  flex-direction: column;
}

label {
  font-family: Myriad;
  font-size: 18px;
  color: #272c3a;
  margin-bottom: 5px;
}

select {
  font-family: Myriad;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #d0d5dd;
  background-color: #ffffff;
  color: #272c3a;
  cursor: pointer;
}

.selector-container {
  z-index:10;
}

#us-map {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


#svg-object path:not([data-name]),
#svg-object circle:not([data-name]) {
 
}

#info-box {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  background-color: #ffffff;
  border: 2px solid #7b838d;
  border-radius: 5px;
  padding: 5px;
  font-family: arial;
  color: #404657;
}

#sidebar {
  border: 1px solid #d0d5dd;
  height: 100vh;
  width: 5vw;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 60px;
  background: white;
  padding: 0.5em;
}

#sidebar img {
  display: block;
  margin: auto;
}

#roomie {
  position: absolute;
  bottom: 0px;
  right: 0px;
  padding: 1em;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #272c3a;
}

body {
  background: #f3f4f6;
  overflow: hidden;
}

/* #svg-object-container {
   display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

#svg-object {
  max-width: 90vw;
  max-height: 90vh;
  height: auto;
  width: auto;
  display: block;
} */

#svg-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%; /* Adjust the percentage to take up most of the window */
  height: 95%; /* Adjust the percentage to take up most of the window */

}

#svg-object {

  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
}

.modal {
  display: block;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 4px;
  text-align: center;
}

.logo {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

button#enter-button {
  background-color: #007bff;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 20px 0;
  cursor: pointer;
  border-radius: 4px;
}

.modal-content {
  /* ... */
  font-family: Myriad, sans-serif;
}

p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 500px;
}

path[data-name]:hover,
circle[data-name]:hover {

}

