.save-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000; /* black */
  color: #fff;
  padding: 0 20px;
  height: 80px;
  width: 100%;
  box-sizing: border-box;
}

.banner-left h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.banner-right {
  display: flex;
  align-items: center;
  background-color: #FFD600; /* bright yellow */
  padding: 0 30px;
  height: 100%;
}

.banner-logo {
  height: 50px;
  width: auto;
  margin-right: 12px;
}

.banner-hashtag {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
}

/* Optional: responsiveness */
@media (max-width: 600px) {
  .banner-left h1 {
    font-size: 1.2rem;
  }
  .banner-hashtag {
    font-size: 1rem;
  }
  .banner-logo {
    height: 40px;
  }
}
