 
/*  Audio container - in Side Panel */

.audio-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px; /* Adjust height as needed */
    border-radius: 5px; /* Rounded corners for the container */
    margin-bottom: 20px; /* Adjust margin as needed */
	 background-color: crimson;
}

.audio-player {
    width: 100%;
    background-color: crimson; /* Default background color */
}

.audio-link {
    text-decoration: none;
    color: #333; /* Color of the link text */
    font-size: 16px; /* Font size of the link text */
    padding: 10px 20px; /* Padding around the link text */
    border-radius: 5px; /* Rounded corners for the link */
    background-color: crimson; /* Background color for the link */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.audio-link:hover {
    background-color: #0056b3; /* Background color for the link on hover */
}
