body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    width: 100vw;
    box-sizing: border-box;
}

#search_and_sort {
    margin-top: 30px;
}

h1 {
    width: 100%;
    padding: 0;
    margin: 0;
    z-index: 99999;
    background-color: #0a396b;
}

h1 img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

.audio-player {
    position: relative;
    margin: 20px 0px 0px;
    background-color: #fff;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
    display: flex;
    align-items: center; /* Center items vertically */
    box-sizing: border-box;
}

.audio-player:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.audio-player-logo {
    flex: 0 0 25%; /* Use 30% of the container-fluid width, can adjust as needed */
}

.audio-player-logo img {
    width: 100%; /* Make the image fill the container-fluid */
    border-radius: 50%; /* Make the image circular */
}

.audio-player-infos {
    flex: 1; /* Take the remaining space */
    padding-left: 15px; /* Adjust the spacing between logo and info */
}

audio {
    width: 100%;
    margin-top: 10px;
    display: block;
}

canvas {
    width: 100%;
    height: 60px;
    background-color: #2699D8;
    z-index: 1;
    display: none;
}

button {
    background-color: #2699D8;
    color: #000;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

button:hover {
    background-color: #2699D8;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-top: 30px;
    box-sizing: border-box;
}

@media (min-width: 576px) {
    .col-md-3 {
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

@media (min-width: 768px) {
    .col-md-3 {
        -ms-flex: 0 0 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    h1 img {
        width: 30%;
    }
}

@media (min-width: 992px) {
    h1 img {
        width: 30%;
    }
}

@media (min-width: 1200px) {

    .col-md-3 {
        -ms-flex: 0 0 25% !important;
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }
}

@media (min-width: 2000px) {

    .col-md-3 {
        -ms-flex: 0 0 20% !important;
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
}