.sidebar-tab--blue {
  background: #4fc3f7 !important;
  color: #fff !important;
}
.sidebar-tab {
    background: #eaeaea;
    color: #393939;
    border: none;
    border-radius: 8px 8px 0 0;
    padding: 8px 24px;
    font-weight: 100;
    cursor: pointer;
    font-size: .75rem;
    box-shadow: none;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
}
.sidebar-tab:hover {
    background: #d0d0d0;
    color: #393939;
}
.sidebar-tab--active {
  background: #393939;
  color: #fff;
  border-bottom: 4px solid #f7b500;
  z-index: 2;
}
.sidebar-box--dark {
  background: #393939 !important;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 28px 20px 24px 20px;
  margin-bottom: 8px;
  position: relative;
}
.sidebar-title--yellow {
  color: #f7b500;
  font-size: 1.2rem;
  margin-bottom: 18px;
  margin-top: 10px;
  font-weight: bold;
}
.sidebar-title {
  font-size: 1.2rem;
}
.sidebar-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.sidebar-tab {
  background: #eaeaea;
  color: #393939;
  border: none;
  border-radius: 8px 8px 0 0;
  padding: 2px 3px;
  font-weight: bold;
  cursor: pointer;
  font-size: .75rem;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
}
.sidebar-tab--active {
  background: #393939;
  color: #fff;
  border-bottom: 4px solid #f7b500;
  z-index: 2;
}
.sidebar-form-row {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}
.sidebar-form input,
.sidebar-form select {
  flex: 1;
  margin-top: 2px;
  margin-bottom: 4px;
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  font-size: 0.75rem;
  background: #fff;
  color: #393939;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  min-width: 0;
}
.date-input {
  width: 100%;
  min-width: 0;
}
.sidebar-form input::placeholder {
  color: #000;
  font-size: .75rem;
}
.sidebar-form label {
  color: #f7b500;
  font-weight: bold;
  margin-bottom: 4px;
  margin-top: 12px;
  display: block;
  font-size: .75rem;
}
.sidebar-btn--yellow {
  background: #f7b500;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 0;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  font-size: 1.05rem;
  margin-top: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  transition: background 0.2s;
}
.sidebar-btn--yellow:hover {
  background: #e0a800;
}
/* destination.css - styles for destination page */
.destination-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Poppins', Arial, sans-serif;
}
.destination-main {
  display: flex;
  gap: 24px;
}
.destination-banner {
  flex: 3;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 16px;
}
.banner-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 8px;
}
.destination-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
.action-box {
  background: #f8f8f8;
  border-radius: 6px;
  padding: 16px;
  text-align: center;
  width: 48%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.action-btn {
  margin-top: 16px;
  background: #f7b500;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
}
.action-btn:hover {
  background: #e0a500;
  color: #fff;
}
.destination-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 16px;
  margin-bottom: 8px;
}
.sidebar-form label {
  display: block;
  margin-top: 8px;
  font-weight: bold;
}
.sidebar-form input, .sidebar-form select {
  width: 100%;
  margin-top: 4px;
  margin-bottom: 8px;
  padding: 6px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.sidebar-form button {
  background: #f7b500;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 4px 8px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  font-size: 0.75rem;
}
.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
  text-align: center;
}
.sidebar-list li {
  margin-bottom: 8px;
  background: #f8f8f8;
  border-radius: 4px;
  padding: 8px;
}
.sidebar-btn {
  background: #f7b500;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  display: block;
  text-align: center;
  text-decoration: none;
}
.sidebar-btn:hover {
  background: #e0a500;
  color: #fff;
}
.destination-articles {
  margin-top: 32px;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  overflow: hidden;
  position: relative;
  padding-bottom: 8px;
}
.article-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.article-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #f7b500;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}
.article-title {
  margin: 12px 8px 0 8px;
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 900px) {
  .destination-main {
    flex-direction: column;
  }
  .destination-sidebar {
    flex-direction: row;
    gap: 8px;
  }
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}
