/* =========================
   PLAYER CONTAINER
========================= */
.kcsb-player {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  color: #fff;
  padding: 10px 20px;
  width: 100%;
}

/* =========================
   LEFT SIDE
========================= */
.kcsb-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* TEXT */
.kcsb-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kcsb-title {
  font-size: 16px;
  line-height: 1.2;
}

.kcsb-meta,
.kcsb-next {
  font-size: 13px;
  color: #aaa;
  line-height: 1.3;
}

/* =========================
   PLAY BUTTON
========================= */
.spinitron-stream-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

/* remove default text */
.spinitron-stream-button-text {
  display: none !important;
}

/* PLAY triangle */
.spinitron-stream-button[aria-pressed="false"]::before {
  content: "";
  border-left: 16px solid black;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: translateX(2px);
}

/* PAUSE bars */
.spinitron-stream-button[aria-pressed="true"]::before {
  content: "";
  width: 14px;
  height: 18px;
  background: linear-gradient(
    to right,
    black 0 5px,
    transparent 5px 9px,
    black 9px 14px
  );
}

/* =========================
   RIGHT SIDE (VOLUME)
========================= */
.kcsb-right {
  display: flex;
  align-items: center;
}

.kcsb-volume {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ICON */
.kcsb-volume-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.kcsb-volume-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

/* =========================
   VOLUME SLIDER
========================= */
.kcsb-volume-slider {
  width: 120px;
  height: 4px;
  appearance: none;
  background: #444;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

/* slider thumb */
.kcsb-volume-slider::-webkit-slider-thumb {
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.kcsb-volume-slider::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .kcsb-right {
    display: none;
  }
}