/* Embed Player Styles */

/* Reset for embedded context */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ensure the player takes up the full space in the iframe */
.radio-player {
  width: 100%;
  height: 100%;
  margin: 0;
  box-shadow: none;
  border-radius: 0;
}

/* Responsive adjustments for embedded player */
@media (max-width: 300px) {
  .player-logo {
    width: 60px;
    height: 60px;
  }
  
  .player-play-button {
    width: 40px;
    height: 40px;
  }
  
  .player-station-name {
    font-size: var(--font-size-md);
  }
}

/* When embedded in a small container */
@media (max-height: 100px) {
  .player-description {
    display: none;
  }
  
  .player-logo {
    width: 50px;
    height: 50px;
  }
}