.discovery-main-container {
  background-color: white;
}

.discover-header {
  max-width: 1040px;
  margin: 0 auto;
  border-bottom: 1px solid #c9c9c9;
}
.discover-header h1 {
  display: none;
}

.discover-search-bar {
  padding: 32px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.discover-search-input {
  padding: 16px 64px 16px 16px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  outline: none;
  background: url("/assets/icons/search-icon.svg") no-repeat;
  background-position: right 32px center;
  box-shadow: 0px 8px 24px -16px rgb(66, 68, 90);
}

.see-more-btn {
  font-weight: 700;
  font-size: 2rem;
  margin-block: 32px;
  color: #06a59a;
  transition: all 0.3s ease;
}
.see-more-btn i {
  color: #06a59a;
  margin-left: 12px;
}
.see-more-btn:hover {
  color: white;
  background-color: #06a59a;
}
.see-more-btn:hover i {
  color: white;
}
.see-more-btn .spinner-border {
  margin-left: 12px;
}

.composer-cards-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 10;
  display: none;
}

.composer-cards-loading-overlay.d-flex {
  display: flex;
}

.discover-result-container {
  display: flex;
  justify-content: center;
}
.discover-result-container .no-composers-card {
  background: #06a59a;
  border-radius: 20px;
  padding: 24px 48px;
  max-width: 420px;
  margin: 48px 24px 32px 24px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.discover-result-container .no-composers-card .no-composers-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}
.discover-result-container .no-composers-card .no-composers-desc {
  color: white;
  font-size: 1rem;
  max-width: 320px;
  border-top: 1px solid;
  padding-top: 12px;
}

@media (min-width: 768px) {
  .discovery-main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: 32px;
    margin-bottom: 32px;
  }
  .discover-header h1 {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-top: 128px;
    margin-bottom: 0;
  }
  .discover-search-bar {
    padding-inline: 0;
  }
  .discover-search-input {
    padding: 24px 64px 24px 24px;
    background-size: 40px;
  }
  .discover-header {
    border: none;
    width: 100%;
  }
  .see-more-btn {
    border: 1px solid #06a59a;
    padding: 8px 128px;
    margin-block: 64px;
  }
}
