﻿/* Basic page layout */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

/* Content area */
.content {
    text-align: center;
    padding: 50px;
}

/* Position the audio player in the foreground */
.audio-player {
    position: fixed;  /* Keeps the player in a fixed position on the page */
    bottom: 20px;  /* Position it 20px from the bottom */
    left: 50%;  /* Center it horizontally */
    transform: translateX(-50%);  /* Perfectly center the player */
    z-index: 9999;  /* Ensure it stays on top of other content */
    background-color: rgba(255, 255, 255, 0.9);  /* Light background with some transparency */
    border-radius: 8px;  /* Optional: rounded corners for the player */
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);  /* Optional: shadow for a better foreground effect */
}

/* Optional: Style the audio element */
audio {
    width: 300px; /* Set a fixed width for the player */
    border-radius: 5px;
}
