
#map-element{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}
#depart{
  text-align: center;
}
#bannerImage {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

#data-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  justify-content: center;
}

.item {
  width: calc(25% - 20px); 
  height: 200px;
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 8px;
}

.item-content {
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
}

.pagination {
  text-align: center;
  margin: 20px;
}

#prev-btn, #next-btn {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin: 0 10px;
}

#prev-btn:disabled, #next-btn:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.container {
  text-align: center;
  font-size: 20px;
  padding: 20px;
}

.container a {
  text-decoration: none;
  color: #007BFF;
  font-size: 18px;
}

.details-container {
  padding: 20px;
  background-color: #f4f4f4;
  text-align: center;
}

#department-details img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

a {
  text-decoration: none;
  color: #007BFF;
}

a:hover {
  text-decoration: underline;
}
.search-container {
  text-align: center;
  margin: 20px 0;
}

#search-input {
  width: 80%;
  max-width: 600px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
