/* Google Maps styling for hotel detail page */
.hotel-maps-container {
  width: 100%;
  height: 300px;
  margin-top: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hotel-maps-container iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.google-maps-link {
  display: flex;
  align-items: center;
  color: #4285F4;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 10px;
}

.google-maps-link i {
  margin-right: 8px;
  font-size: 16px;
}

.google-maps-link:hover {
  text-decoration: underline;
}