.pickup-img.clickable-img {
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.pickup-img.clickable-img:hover {
  box-shadow: 0 0 0 4px #f50087;
}
.img-modal {
  display: flex;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
}
.modal-content {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 2px 32px rgba(0,0,0,0.4);
}
.close-modal {
  position: absolute;
  top: 32px;
  right: 48px;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background: #fce4f7;
  font-family: 'Montserrat', Arial, sans-serif;
}

.pat-header {
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 3px solid #f50087;
  padding: 16px 32px;
}
.search-form {
  margin-bottom: 32px;
}
.hotel-dropdown {
  width: 100%;
  max-width: 500px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1.1rem;
  margin-bottom: 16px;
  margin-top: 8px;
}
.search-btn {
  background: #f50087;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 10px 24px;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.search-btn:hover {
  background: #c2006a;
}
.pat-logo {
  height: 48px;
  margin-right: 24px;
}
.pat-jeep-logo {
  height: 48px;
}

.main-content {
  max-width: 900px;
  margin: 0 auto;
  background: #fce4f7;
  padding: 32px 0;
}

.search-form {
  margin-bottom: 32px;
}
.search-form label {
  font-weight: bold;
  font-size: 1.1rem;
  color: #333;
  display: block;
  margin-bottom: 8px;
}
.search-box {
  width: 100%;
  max-width: 500px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.pickup-card {
  background: #fff;
  border: 2px solid #f50087;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 2px 16px rgba(245,0,135,0.08);
}
.pickup-card h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}
.pickup-details {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 24px;
}
.pickup-images {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.pickup-img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #f50087;
  background: #fff;
}

.directions-btn-container {
  text-align: center;
  margin-top: 32px;
}
.directions-btn {
  background: #fff;
  color: #f50087;
  border: none;
  border-radius: 16px;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 18px 48px;
  box-shadow: 0 2px 16px rgba(245,0,135,0.10);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.directions-btn:hover {
  background: #f50087;
  color: #fff;
}

.no-results {
  text-align: center;
  color: #f50087;
  font-size: 1.2rem;
  margin-top: 32px;
}