/* Reset basic styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            max-height: 9999999px;
        }
body {
  background-color: lightgreen;

  /* Smoothly transition the background color */
  transition: background-color 1s;
}

.player {
  height: 95vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.details {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-top: 25px;
}

.track-art {
  margin: 25px;
  height: 250px;
  width: 250px;
  background-image: url("https://images.pexels.com/photos/262034/pexels-photo-262034.jpeg?auto=compress&cs=tinysrgb&dpr=3&h=750&w=1260");
  background-size: cover;
  border-radius: 15%;
}

.now-playing {
  font-size: 1rem;
}

.track-name {
  font-size: 1.8rem;
  text-align: center;
  margin: 8px;
}

.track-artist {
  font-size: 1.4rem;
}

.buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.playpause-track, .prev-track, .next-track {
  padding: 25px;
  opacity: 0.8;

  /* Smoothly transition the opacity */
  transition: opacity .2s;
}

.playpause-track:hover, .prev-track:hover, .next-track:hover {
  opacity: 1.0;
}

.slider_container {
  width: 75%;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Modify the appearance of the slider */
.seek_slider, .volume_slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 5px;
  background: black;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

/* Modify the appearance of the slider thumb */
.seek_slider::-webkit-slider-thumb, .volume_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: white;
  cursor: pointer;
  border-radius: 50%;
}

.seek_slider:hover, .volume_slider:hover {
  opacity: 1.0;
}

.seek_slider {
  width: 60%;
}

.volume_slider {
  width: 30%;
}

.current-time, .total-duration {
  padding: 10px;
}

i.fa-volume-down, i.fa-volume-up {
  padding: 10px;
}

i.fa-play-circle, i.fa-pause-circle, i.fa-step-forward, i.fa-step-backward {
  cursor: pointer;
}

        /* Full-screen overlay styling */
        #nas-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #f5f5f5; /* Light, neutral background */
            color: #333;
            display: none; /* Hidden initially */
            justify-content: center;
            align-items: center;
            text-align: center;
            z-index: 1000; /* Ensure overlay stays on top */
            padding: 14px;
        }

        /* Centered message container */
        #nas-message {
            max-width: 800px;
            width: 100%;
            background-color: #fff;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            font-family: 'Helvetica Neue', sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center; /* Center icon and content */
        }

        /* Heading style */
        #nas-message h1 {
            font-size: 2.5rem;
            color: #007BFF; /* Bright blue heading */
            margin-bottom: 20px;
        }

        /* Paragraph styling */
        #nas-message p {
            font-size: 1.2rem;
            line-height: 1.6;
            color: #555; /* Lighter text */
            margin-bottom: 30px;
        }

        /* Music icon styling */
        #nas-icon {
            font-size: 4.2rem;
            color: #007BFF; /* Match the heading color */
            margin-bottom: 8px; /* Separate from the button */
        }

        /* Optional action button styling */
        #nas-message a {
            display: inline-block;
            margin-top: 30px;
            padding: 12px 25px;
            font-size: 1.1rem;
            background-color: #007BFF;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        #nas-message a:hover {
            background-color: #0056b3;
        }

        /* Responsive typography */
        @media (max-width: 600px) {
            #nas-message h1 {
                font-size: 2rem;
            }

            #nas-message p {
                font-size: 1.2rem;
            }

            #nas-message {
                padding: 20px;
            }
        }
