* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

    main {
        display: flex;
        flex: 1;
        margin-bottom: 90px;
    }

        #left, #center, #right {
            padding: 20px;
        }

        #left, #right {
            background-color: #010B02;
            flex: 0 0 220px;
            width: 220px;
            /* display: flex;
            flex-direction: column;
            justify-content: center; */
        }

        #left {
            left: 0;
        }
            #expandir {
                height: auto;
                width: 100%;
                display: flex;
                justify-content: end;
            }
            #expandir > img {
                height: auto;
                width: 20px;
            }

            #busca {
                background-color: none;
                height: 30px;
                display: flex;
                justify-content: center;
                align-items: center;
                margin-top: 15px;
            }
            
            #campoBusca {
                width: 100%;
                height: 30px;
                padding: 5px 10px;
                font-size: 14px;
                border: none;
                border-radius: 15px;
                outline: none;
            }

            #filtros {
                display: flex;
                justify-content: space-between;
                width: auto;
                height: auto;
                margin: 10px 10px 0 10px;
            }

                #filtros>a>img {
                    width: 22px;
                    height: auto;
                }
            hr {
                height: 0px;
                width: 100%;
                border-color: #222;
                margin-top: 22px;
            }
            #buscaResult {
                height: auto;
                flex: 1;
                width: 100%;
                margin-top: 22px;
                color: white;
                display: flex;
                flex-direction: column;
                justify-content: start;
                line-height: 1.6;
                gap: 12px;
            }

                /* Estilos para a div que contém cada música */
                .div-musica {
                    display: flex;
                    align-items: center;
                    cursor: pointer;
                }

                /* Estilo para a imagem do cover */
                .img-cover {
                    margin-right: 10px;  /* Espaçamento entre a imagem e os textos */
                    width: 32px;
                    height: 32px;
                    border-radius: 4px;
                }

                /* Container para os textos */
                .text-container {
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    height: 32px;  /* Altura para alinhar os textos */
                    line-height: 1.2;
                }

                /* Estilo para o primeiro p (música) */
                .p-musica {
                    font-size: 16px;
                    color: white;
                    margin: 0;  /* Remove a margem padrão */
                }

                /* Estilo para o segundo p (artista) */
                .p-artista {
                    font-size: 10px;
                    color: rgb(170, 170, 170);
                    margin: 0;  /* Remove a margem padrão */
                }
                
                
                #center {
            background-color: #111;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
            #center > img {
                width: 320px;
                height: auto;
                margin-top: 10px;
                border-radius: 12px;
            }
            #center > h1, h2 {
                width: 100%;
                padding: 0 20px;
            }
            #center > h1 {
                margin-top: 50px;
                height: auto;
                color: white;
            }
            #center > h2 {
                margin-top: 10px;
                height: auto;
                color: rgb(170, 170, 170);
            }
            #maisInfo {
                background-color: #333;
                color: white;
                border-radius: 25px;
                height: auto;
                margin-top: 50px;
                padding: 10px 20px;
                font-size: 14px;
            }

        #right {
            right: 0;
        }
            #limparPlaylist {
                height: auto;
                width: 100%;
                display: flex;
                justify-content: end;
            }
            #limparPlaylist > img {
                height: auto;
                width: 20px;
            }
            #options {
                height: auto;
                width: 100%;
                display: flex;
                justify-content: end;
            }
                #options > img {
                    height: auto;
                    width: 20px;
                }
            #rightTitulo {
                color: white;
                width: 100%;
                height: auto;
                margin-top: 25px;
                display: flex;
                justify-content: start;
            }
                #rightTitulo > h3 {
                    font-weight:800;
                }
            #listaReprod {
                color: white;
                margin-top: 10px;
                line-height: 1.6;
                height: auto;
                width: 100%;
                flex: 1;
                display: flex;
                flex-direction: column;
                justify-content: start;
                gap: 12px;
            }

                .div-reproduzir {
                    display: flex;
                    align-items: center;
                    cursor: pointer;
                }

                .div-reproduzir .img-cover {
                    width: 32px;
                    height: 32px;
                    border-radius: 4px;
                    margin-right: 10px;
                }

                .div-reproduzir .text-container {
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    height: 32px;
                }

                #emReproduzir .p-musica {
                    color: blue;
                    font-weight: bold;
                }

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90px;
    width: 100%;
    padding: 10px;
    background-color: #222;
    position: fixed;
    bottom: 0;
}
    audio {
        padding: 0;
        margin: 0;
        height: 54px;
    }