/* assets/css/style.css */

/* assets/css/style.css */

#ilm-map {
  position: relative;
  height: 500px;
  padding-left: 300px; /* Space for the slide-in panel */
  box-sizing: border-box; /* Ensure padding doesn't affect total width */
}

#ilm-slide-panel {
  position: absolute;
  top: 0;
  left: -300px; /* Start off-screen */
  width: 300px;
  height: 100%;
  background-color: #f2f2f2;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  transition: left 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
}

#ilm-panel-content {
  padding: 20px;
}

#ilm-slide-panel h3 {
  margin-top: 40px;
}

#ilm-close-panel {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #f44336;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
}

#ilm-close-panel:hover {
  background-color: #d32f2f;
}

.custom-red-marker {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* assets/css/style.css */

.get-directions-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #21006b; /* Google blue */
  color: white!important;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
}

.get-directions-button:hover {
  background-color: #357ae8; /* Slightly darker blue on hover */
}
