/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
        height: 100%;
        /* The html and body elements cannot have any padding or margin. */
      }

#push,
      #footer {
        height: 0px;
      }
      #footer {
        
      }

 #wrap {
        min-height: 100%;
        height: auto !important;
        height: 100%;
        /* Negative indent footer by it's height */
        margin: 0 auto 0;
      }
.snowflake {
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(white, white); /* Workaround for Chromium's selective color inversion */
    border-radius: 50%;
    filter: drop-shadow(0 0 10px white);
}
button {
  padding: 0;
  border: 0;
  background: inherit;
  cursor: pointer;
  outline: none;
  width: 40px;
  height: 40px;
}
.audio-player {
    width: 300px;
    margin: 20px auto;
    text-align: center;
    background-color: #f3f3f3;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
#play-pause {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}
#seek-bar {
    flex-grow: 1;
    margin: 0 10px;
}
#current-time, #duration {
    font-size: 14px;
}