/* Custom Bluesky icon to match BoxIcons */
.bx.bxl-bluesky {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url('/assets/img/bluesky.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-size: inherit; /* Inherit the size from parent element */
  vertical-align: middle;
  font-style: normal;
}

/* Optional: If you need hover states to match other BoxIcons */
a:hover .bx.bxl-bluesky {
  color: var(--bs-primary, #121212); /* Match your hover color scheme */
}

/* Audio player styling from _user.scss */
.text-light {
    color: #F0ECE2;
}

/* Increase specificity to override Bootstrap */
.btn.btn-circle {
    width: 80px;
    height: 80px;
    padding: 0;
    border-radius: 50%;
    border: 3px solid #F0ECE2;
    background-color: transparent !important; /* Use !important to override Bootstrap */
    color: #F0ECE2 !important;
}
  
.btn.btn-circle:hover {
    background-color: rgba(240, 236, 226, 0.1) !important;
}

.btn.btn-circle .play-icon-centered {
    margin-left: 12px;
    padding: 0;
    color: #F0ECE2;
    font-size: 5rem;
}

.btn.btn-circle .pause-icon-centered {
    margin-left: 2px;
    padding: 0;
    color: #F0ECE2;
    font-size: 5rem;
}

.play-title {
    font-size: 1.72rem;
}

.play-super-title {
    font-size: 0.98rem;
}

.ga-brand-xs {
    font-size: 0.8rem;
}

/* Additional styles to enhance the player */
.ga-play {
    transition: transform 0.3s ease;
}

.ga-play:hover {
    transform: translateY(-3px);
}

/* Make the waveform container more visible */
.waveform-container wave {
    border-radius: 8px;
    overflow: hidden;
}

.waveform-container {
  height: 90px;
  position: relative;
}

.play-pause-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #e86f1d;
  border: none;
}

.play-pause-btn:hover {
  background-color: #d1620e;
}

.play-icon-centered {
  margin-left: 4px;
}

.pause-icon-centered {
  margin-left: 0;
}
