/*
Theme Name: ParkNepal Custom Map Theme
Author: Your Name
Description: Custom theme integrated with Open User Map plugin
Version: 1.1
*/

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f9f9f9;
}
.map-container {
  display: flex;
  flex-direction: column;
}
.search-bar {
  background: #0d1c40;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.search-bar input, .search-bar select {
  padding: 0.5rem;
  border-radius: 5px;
  border: none;
}
.map-and-sidebar {
  display: flex;
}
#map {
  width: 70%;
  height: 80vh;
}
.sidebar {
  width: 30%;
  padding: 1rem;
  overflow-y: auto;
  background: white;
}
.card {
  background: #fff;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.bottom-bar {
  display: flex;
  justify-content: space-around;
  padding: 1rem;
  background: #1a2c54;
  color: white;
}
.bottom-bar button {
  background: #1c4e80;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
}
.map-and-sidebar {
  display: flex;
  flex-direction: row;
  height: 90vh;
}
.sidebar {
  width: 30%;
  max-width: 400px;
  min-width: 250px;
  background: #fff;
  overflow-y: auto;
  padding: 1rem;
  box-shadow: 2px 0 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
#map {
  width: 70%;
  height: 90vh;
}
@media (max-width: 768px) {
  .map-and-sidebar {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    max-width: none;
    height: auto;
  }
  #map {
    width: 100%;
    height: 70vh;
  }
}