.bl-container {
  position: relative;
}

.bl-search-wrapper {
  text-align: center;
  padding: 50px 20px;
}

#zip {
  padding: 12px;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#submitBtn {
  padding: 12px 20px;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#submitBtn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Overlay */
.bl-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 998;
}

/* Sidebar */
.bl-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100%;
  background: #fff;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  transition: 0.4s ease;
  z-index: 999;
  padding: 20px;
}

.bl-sidebar.active {
  right: 0;
}

.bl-overlay.active {
  display: block;
}

.bl-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.bl-close {
  cursor: pointer;
  font-size: 24px;
}

/* Result cards */
/* Result Card */
.store-card {
  background: #ffffff;
  padding: 18px;
  margin-bottom: 18px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

/* Branch Title */
.store-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #222;
}

/* Branch Code */
.store-branch {
  font-size: 14px;
  color: #777;
  margin-bottom: 8px;
}

/* Address */
.store-address {
  font-size: 14px;
  color: #444;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* View Details Button */
.store-btn {
  display: inline-block;
  padding: 8px 14px;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  transition: 0.3s ease;
}

.store-btn:hover {
  color: #fff;
}
