@charset "utf-8";
/* CSS Document */
#shadednoir
{
 content: url(/shadedNoir.png); 
}
/* Responsive adjustments for smaller mobile */
@media (max-width: 480px) {
  .song-name {
    font-size: 20px;
  }

  .playback-controls {
    gap: 10px;
  }

  .control-button {
    width: 40px;
    height: 40px;
  }

  .control-button.play-pause {
    width: 52px;
    height: 52px;
  }

  .bottom-controls {
    flex-wrap: wrap;
  }

  .theme-button {
    order: 3;
    width: 100%;
    margin-top: 10px;
  }
}
.container {
  width: 100%;
  min-height: 100vh;
  padding: 20px;
}

/* Songs Container */
.songs-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.songs-container h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.playlist-section {
  margin-bottom: 50px;
}

.playlist-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.songs-grid {
  display: grid;
  gap: 15px;
}

.song-button {
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
  color: white;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.song-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.song-button-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.song-icon {
  opacity: 0.7;
}

.song-info {
  flex: 1;
}

.song-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.song-loop-info {
  font-size: 0.9rem;
  opacity: 0.7;
}

.song-arrow {
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 1.5rem;
}

.song-button:hover .song-arrow {
  opacity: 1;
}

/* WAV Media Player Styles */
.wav-player-container {
  position: fixed;
  bottom: 0;
  z-index: 1000;
  background: #424242DD;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  color: white;
  animation: slideUp 0.3s ease-out;
}

/* Mobile/Small screens: 100% width at bottom, height 21.1vh */
@media (max-width: 877px) {
  .wav-player-container {
    position: sticky;
    width: 100%;
    left: 0;
    padding: 15px 20px;
    border-radius: 20px 20px 0 0;
    overflow-y: auto;
  }
}

/* Tablet and Desktop: 10% smaller, bottom right */
/* Desktop: Compact Layout to fit 21.1vh */
@media (min-width: 878px) {
  .wav-player-container {
    right: 0;
    left: auto;
    width: 45vw;         /* Wider to fit side-by-side content */
    max-width: 600px;
    min-height: 180px;   /* Safety minimum so text doesn't crush */
    padding: 15px 25px;
    border-radius: 20px 0 0 0; /* Rounded top-left corner only */
    margin: 0;
    
    /* Use CSS Grid to organize content efficiently */
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Left col (Info), Right col (Controls) */
    grid-template-rows: auto auto 1fr;
    column-gap: 20px;
    align-content: center;
    overflow: hidden; /* Prevent scrollbars */
  }

  /* 1. Song Name (Top Left) */
  .song-name {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
    font-size: 1.2rem;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* 2. Scrolling Description (Middle Left) */
  .song-description {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 5px;
    text-align: left;
  }

  /* 3. Timestamp (Bottom Left) */
  .timestamp {
    grid-column: 1;
    grid-row: 3;
    text-align: left;
    margin-bottom: 0;
    align-self: end; /* Push to bottom of cell */
  }

  /* 4. Seeker Bar (Top Right) */
  .seeker-container {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    margin-bottom: 0;
    align-self: center;
  }

  /* 5. Playback Controls (Middle Right) */
  .playback-controls {
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 5px;
    gap: 10px;
  }
  
  /* Make buttons slightly smaller to fit */
  .control-button {
    width: 35px; height: 35px;
  }
  .control-button.play-pause {
    width: 45px; height: 45px;
  }

  /* 6. Bottom Controls (Loop/Vol) (Bottom Right) */
  .bottom-controls {
    grid-column: 2;
    grid-row: 3;
    gap: 10px;
    align-self: end;
  }

  /* Adjust Volume Slider width for compact space */
  .volume-control {
    justify-content: flex-end;
  }
  .volume-slider {
    max-width: 80px;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.player-row {
  margin-bottom: 20px;
}

/* Row 1: Song Name */
.song-name {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

/* Row 2: Song Description (Scrolling) */
.song-description {
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  height: 30px;
  margin-bottom: 15px;
}

.scrolling-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
  font-size: 14px;
  opacity: 0.9;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Row 3: Timestamp */
.timestamp {
  text-align: center;
  font-size: 14px;
  font-family: 'Courier New', monospace;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-bottom: 15px;
}

/* Row 4: Seeker Bar */
.seeker-container {
  /* 1. Limit width to 80% and center it */
  width: 80%;
  margin: 0 auto 25px auto;
  
  /* 2. Create a stable box for the slider */
  height: 20px; 
  display: flex;
  align-items: center;
  position: relative;
}

.seeker-wrapper {
  /* 3. The visual track acts as the anchor */
  position: relative;
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  /* No overflow hidden, so the thumb can stick out slightly if needed */
}

/* The Invisible Slider Logic (Input) */
.seeker-bar {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%); /* Perfectly center vertically */
  width: 100%; /* Matches wrapper exactly */
  height: 20px; /* Touch area larger than visual track */
  margin: 0;
  padding: 0;
  
  -webkit-appearance: none;
  appearance: none;
  background: transparent; /* Invisible track */
  z-index: 10; /* Must be on top to be clickable */
  cursor: pointer;
}

/* Slider Thumb Styling */
.seeker-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
  margin-top: 0; 
}

.seeker-bar::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Visual Layers (Underneath the input) */
.seeker-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: white;
  border-radius: 10px;
  pointer-events: none;
  z-index: 2;
}

.seeker-loop {
  position: absolute;
  top: 0;
  /* left/width are set by JS */
  height: 100%;
  border-radius: 10px;
  pointer-events: none;
  z-index: 1;
}

.seeker-loop.active {
  background: rgba(0, 255, 0, 0.5);
}
.seeker-loop.inactive {
  display: none;
}

/* Row 5: Playback Controls */
.playback-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.control-button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.control-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.control-button:active {
  transform: scale(0.95);
}

.control-button.play-pause {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
}

.control-button.play-pause:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Row 6: Bottom Controls */
.bottom-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.left-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.loop-button {
  padding: 8px 16px;
  border: 2px solid;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  background: transparent;
}

.loop-button:not(.active) {
  border-color: #ff4444;
  color: #ff4444;
  background: rgba(255, 68, 68, 0.1);
}

.loop-button.active {
  border-color: #44ff44;
  color: #44ff44;
  background: rgba(68, 255, 68, 0.1);
}

.loop-button:hover {
  transform: scale(1.05);
}

.repeat-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.repeat-checkbox input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: relative;
}

.checkbox-custom:not(.active) {
  border-color: #ff4444;
  background: rgba(255, 68, 68, 0.1);
}

.checkbox-custom.active {
  border-color: #44ff44;
  background: rgba(68, 255, 68, 0.1);
}

.checkbox-custom.active::after {
  content: '✓';
  color: #44ff44;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
}

.repeat-label {
  font-size: 14px;
  font-weight: 500;
}
#theme-select {
  padding: 8px 0px;
}
.theme-button {
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.theme-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.theme-button:active {
  transform: scale(0.95);
}

.volume-control {
  flex: 1;
  display: flex;
  align-items: center;
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 120px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.volume-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}
.favorite_button
{
  background-color: #b399ff;
} 

#full_overlay
{
  pointer-events: none;
  width: 100vw;
  height: 100vh;
  opacity: 0%;
  z-index: 10000000000000000;
  display: block;
  position: fixed;
}
.row
{
	display: -webkit-flex;
	-webkit-flex-wrap: wrap;
	margin-left: 0;
	margin-right: 0;
}
.justify-center
{
	justify-content: center;
	-webkit-justify-content: center;
}
.flex_center
{
	display: flex;
	justify-content: center;
}
.align-center
{
	text-align: center;
}
.fullscreen
{
	width: 100vw;
}
.text-white
{
 color: white; 
}
/* Default */
/*
    body{
        background: url("https://www.google.be/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png") repeat;
        -webkit-animation: scrolling 11s linear infinite;
        -moz-animation: scrolling 11s linear infinite;
        -o-animation: scrolling 11s linear infinite;
        animation: scrolling 11s linear infinite;
    }
    
    @-webkit-keyframes scrolling {
      from{
          background-position: 0 0;
      }
      to{
          background-position: 100vw 100vh;
      }
    }
*/
.home img
{
 height: 15vh; 
}
body
{
  font-size-adjust: none;
	background-color: black;
	background-size: 300px;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	overflow-y: hidden;
	transition: all 0.3s ease;
	width: 100vw;
	font-family:  "Digi-Standard", Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
}

        /* 2. The Loading Screen Overlay */
        #loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #000; /* Background color of the loader */
            z-index: 9999; /* Ensure it sits on top of everything */
            display: flex;
            justify-content: center; /* Horizontally center the dots */
            align-items: center;     /* Vertically center the dots */
            
            /* The fade-out transition */
            opacity: 1;
            transition: opacity 1s ease-out, visibility 1s ease-out;
        }

        /* Class to hide the loader */
        #loader-wrapper.hidden {
            opacity: 0;
            visibility: hidden; /* Prevents clicking on it after it fades */
        }

        /* 3. The Three Jumping Dots */
        .dots-container {
            display: flex;
            gap: 15px; /* Space between dots */
        }

        .dot {
            width: 20px;
            height: 20px;
            background-color: #f4c430; /* Dot color */
            border-radius: 50%;
            
            /* The Animation */
            animation: jump 0.6s infinite alternate;
        }

        /* Stagger the animations so they jump individually */
        .dot:nth-child(1) { animation-delay: 0s; }
        .dot:nth-child(2) { animation-delay: 0.2s; }
        .dot:nth-child(3) { animation-delay: 0.4s; }

        @keyframes jump {
            0% { transform: translateY(0); }
            100% { transform: translateY(-30px); } /* How high they jump */
        }

        /* 4. The Bottom Right Icon */
        .corner-icon {
            position: absolute;
            bottom: 20vh; /* Padded enough from bottom */
            right: 15vw;;  /* Padded enough from right */
            opacity: 0.7;
}
#main
{
	overflow-y: scroll;
	transition: all 0.3s ease;  
}
#main::-webkit-scrollbar 
{
    width: 3px;
}
#main::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px transparent;
    border-radius: 10px;
}
#main::-webkit-scrollbar-thumb {
    background: #f4c430;
    border-radius: 10px;
    transition: background 0.3s ease;
}
#main::-webkit-scrollbar-thumb:hover {
    background: #ffd500;
}

#main.hide-scrollbar::-webkit-scrollbar {
    width: 0px;
}
#song_nav::-webkit-scrollbar 
{
  width: 20px;
}
#song_nav::-webkit-scrollbar-track
{
  box-shadow: inset 0 0 5px #0e0017;
  border-radius: 10px;
}
#song_nav::-webkit-scrollbar-thumb
{
  background: #f4c430;
  border-radius: 10px;
}
#song_nav::-webkit-scrollbar-thumb:hover 
{
  background: #ffd500; 
}

#music_button, #random, #controls
{
		background-color: #A8A8A8;
}
.favorite_button
{
  background-color: #b399ff;
} 
#full_overlay
{
  pointer-events: none;
  width: 100vw;
  height: 100vh;
  z-index: 10000000000000000;
  display: block;
  position: fixed;
}
.active
	{
	 background-color: #00b800;
	}
.active:hover
	{
	  background-color: #00ff00;
	}
	.top_songs
	{
	 background-color: #ffd000;
	}
	.top_songs:hover
	{
	 background-color: #ffff00 !important;
	}
	.playlist_buttons
	{
	  background-color: black;
	  color: white;
	}
	.playlists
  {
  	overflow-y: scroll;
  	transition: all 0.3s ease;  
  }
  .playlists::-webkit-scrollbar 
  {
      width: 1.5vw;
  }
  .playlists::-webkit-scrollbar-track {
      box-shadow: inset 0 0 5px transparent;
      border-radius: 10px;
  }
  .playlists::-webkit-scrollbar-thumb {
      background: #f4c430;
      border-radius: 10px;
      transition: background 0.3s ease;
  }
  .playlists::-webkit-scrollbar-thumb:hover {
      background: #ffd500;
  }
  
  .playlists.hide-scrollbar::-webkit-scrollbar {
      width: 0px;
  }
@media (max-width: 877px)
{
  body
  {
  	overflow-y: scroll;
  	transition: all 0.3s ease;  
  }
  body::-webkit-scrollbar 
  {
      width: 3px;
  }
  body::-webkit-scrollbar-track {
      box-shadow: inset 0 0 5px transparent;
      border-radius: 10px;
  }
  body::-webkit-scrollbar-thumb {
      background: #f4c430;
      border-radius: 10px;
      transition: background 0.3s ease;
  }
  body::-webkit-scrollbar-thumb:hover {
      background: #ffd500;
  }
  
  body.hide-scrollbar::-webkit-scrollbar {
      width: 0px;
  }
  p
  {
   font-size: 1.5rem; 
  }
	#main
	{
	  background-color: rgba(0,0,0,0.75);
		border-style: solid;
		border-color: white;
		border-radius: 2rem;
		margin: 0;
		padding: 0;
	}
	#song_nav
	{ 
	  display: block;
	  background-color: black;
		padding: 0;
		margin: 0;
		border-style: solid;
		border-color: white;
		overflow-y: scroll;
		overflow-x: hidden;
		width: 45vw;
		height: 40vh;
	}
	#music_player
	{
		border: solid white 0.1vh;
	}
	#section_container
	{
		display: block;
	}
	#playlist_container
	{
		display: flex;
	}
	#about-container
	{
	 display: flex; 
	 flex-direction: column;
	}
	#bottomMusic
	{
		display: flex;
		position: sticky;
	}
	#comic_li li
	{
	 width: 100vw; 
	}
	#bio
	{
	 width: 70vw; 
	}
	#twitch-embed
	{
	  width: 100vw;  display: flex; justify-content: center;
	}
	#youtube-embed
	{
	 width: 100vw; height: auto; display: flex; justify-content: center;
	}
	#music_page
	{
	  display: flex;
	  flex-direction: row;
	  justify-content: center;
	}
	#stream
	{
	  overflow-y: scroll;
	 display: flex;
	 flex-direction: column;
	}
	.nav_toggle
	{
		display: flex;
	}
	.nav_top
	{
		position: relative;
	}
	.home
	{
		display: flex;
		align-content: flex-start;
	}
	.nav_font
	{
		margin: 0;
		text-align: center;
		padding: 0;
	}
  .music_sub, .nav_left_icon, .nav_left_sub, .nav_top_icon, .nav_top_sub
  {
    font-size: 1.2rem;
  }
  #random
  {
   height: 60px;
   font-style: oblique;
   font-size: 1.3rem;
   background-color: #A8A8A8;
  }
  #controls
  {
   height: 60px;
   font-style: oblique;
   font-size: 1.3rem;
   background-color: #A8A8A8;
  }
	.music_dropdown
	{
		width: 30vw;
		height: 60px;
		font-style: oblique;
		font-size: 1.3rem;
		margin: 0;
		padding: 0;
		background-color: #A8A8A8;
	}
	.top-line
	{
	  margin-top: 1rem;  
	}
	.default-txt
	{
	 margin: 0px;
	 padding: 0px;
	}
	.center
	{
		margin-top: 1rem;
	}
	.section_dropdown
	{
		width: 86vw;
		height: auto;
		font-style: oblique;
		font-size: 1.2rem;
		margin: 0;
		padding: 0;
		background-color: #f4c430;
	}
	.page_dropdown
	{
		width: 86vw;
		height: auto;
		font-style: oblique;
		font-size: 1.2rem;
		background-color: blueviolet;
		margin: 0;
		padding: 0;
	}
	.nav_left
	{
		font-size: 2.7vw;
		display: flex;
		align-content: flex-start;
	}
	.nav_left_icon
	{
		background-color: #fff5cc;
		width: 80vw;
		height: 6vh;
	}
	.nav_left_sub
	{
		background-color: #ffe88a;
		width: 70vw;
		height: 6vh;
	}
	.nav_top
	{
		font-size: 2.7vw;
		display: flex;
		align-content: flex-start;
	}
	.nav_top_icon
	{
		background-color: #dea8ff;
		width: 80vw;
		height: 6vh;
	}
	.playlists
  {
    width: 35vw;
    max-height: 30vh;
    overflow-y: scroll;
    align-content: center;
  }
  .playlist_buttons
  {
    width: 35vw;
    font-size: 1.5rem;
  }
  .playlist_grid
  {
    display: flex; 
    flex-wrap: wrap; 
    align-content: center;
    flex-direction: column;
    justify-content: center;
  }
	.nav_top_sub
	{
		background-color: #a436ff;
		width: 70vw;
		height: 6vh;
	}
	.music_sub
	{
		margin-top: 0.5rem;
		margin-right: 0;
		margin-left: 0;
		padding: 0;
		width: 35vw;
	}
	.music_player_active
	{
		display: block;
		background-color: black;
		bottom: 0;
		height: 10vh;
		width: 100vw;
	}
}
@media (min-width: 878px)
{
  h5
  {
    margin: 0px;
  }
	body
	{
		width: 100vw;
		height: 100vh;
	}
	li button
	{
	 font-size: 1.4rem; 
	}
	#page_container
	{
		display: block !important;
		position: fixed;
		background-color: #dea8ff;
		width: 100vw;
		border-style: solid;
		border-color: white;
		border-width: 1px;
		height: 5vh;
	}
	#page_section
	{
	 display: flex;
	 flex-direction: row;
	 justify-content: center;
	}
	#page_buttons
	{
	 display: flex; 
	}
	#nav_section
	{
		grid-area: section;
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		height: 80vh;
	}
	#nav_section
	{
		display: flex;
	}
	#nav_section ul
	{
	 width: 20vw; 
	}
	#nav_section li
	{
	 width: 20vw; 
	}
	#nav_section button
	{
	  width: 20vw;
	  height: 10vh;
		background-color: #ffe88a;
	}
	#comics_button
	{
	 display: none; 
	}
	#comics_container
	{
	 display: flex !important;
	 flex-direction: column;
	}
	#socials_button
	{
	 display: none; 
	}
	#socials_container
	{
	 display: flex !important;
	 flex-direction: column;
	}
	#section_container
{
  display: block !important;
  width: 20vw;
}
	#main
	{
	  overflow-y: scroll;
	  overflow-x: hidden;
		display: block;
		position: fixed;
		bottom: 0;
		right: 0;
		background-color: rgba(0,0,0,0.75);
		width: 80vw;
		height: 80vh;
	}
	#bio
	{
	 width: 30vw; 
	}
	#columnAboutA
	{
	 width: 40vw;
	 flex-direction: column;
	}
	#columnAboutB
	{
	 width: 40vw;
	}
	#about-container p
	{
	  font-size: 1.3rem;
	}
	#music_button
	{
	  
	background-color: #A8A8A8;
	 z-index: 1; 
	 width: 20vw;
	 height: 15vh;
	}
	#random
  {
    height: 15vh;
    font-style: oblique;
    font-size: 1.3rem;
  }
  #controls
  {
    height: 15vh;
    font-style: oblique;
    font-size: 1.3rem;
  }
	#stream
	{
	  display: block;
	  object-fit: contain;
	 width: 80vw;
	 height: auto;
	}
	#youtube-embed
	{
	  width: 50vw;  
	}
	#music_page
	{
	  display: flex;
	  flex-direction: row-reverse;
	  width: 20vw;
	  height: 100vh;
	  position: fixed;
	  top: 0;
	  right: 0;
	}
	#song_nav
	{
	  display: flex;
	  overflow-y: scroll;
    z-index: 1001;
	  display: flex;
    width: 20vw;
	  flex-direction: column;
    background-color: rgba(0, 0, 0, 1);
	}
	#playlist_container
	{
	  position: fixed;
    top: 20vh;
    right: 0; /* Initially hidden */
    width: 20vw;
    z-index: 1001;
    height: 80vh;
    transition: right 0.5s ease;
	}
	.default-txt
	{
	 
	 font-size: 1.5rem; 
	}
	.playlists
	{
	  width: 15vw; 
	  height: 15vh;
	}
	.playlist_buttons
  {
    width: 15vw;
    height: 13vh;
    font-size: 1.5rem;
  }
  .playlist_grid
  {
    display: flex;
    flex-wrap: wrap;
  }
	.section_dropdown
	{
		display: none;
	}
	.page_dropdown
	{
		display: none;
	}
	.home
	{
		display: flex;
		width: 100vw;
		height: 15vh;
	}
	.music_sub
	{
    z-index: 1001;
	  font-size: 1.4rem;
	}
	.music_sub button
	{
	 
	 font-size: 1.5rem; 
	}
	#music_button
	{
	  font-size: 1.5rem;
    right: 0px;
    z-index: 1001;
    cursor: pointer;
  }
  #playlist_container.open 
  {
    right: 0; /* Move nav into view */
  }
  .nav_top_icon
  {
		background-color: #dea8ff;
    height: 5vh;
  }
}

