body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0d0c0b;
    color: #ffffff;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; 
    height: auto; 
    min-height: 100vh; 
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #282828;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.centralizado {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espaço entre os botões */
}


.centralizado, .resultados {
    width: 100%; 
    max-width: 1200px;
}

#buscarBtn {
    display: none;
   }

#buscarBtn, #pularBtn {
    background-color: #fd3d00;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
    margin-bottom: 20px; /* Espaço abaixo do botão e títulos */
    text-align: center;
}



#pularBtn {
    display: none;
}




.resultados h2 {
    background-color: #3b3b3b;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 20px; /* Espaço abaixo do botão e títulos */
    text-align: center;
    display: none;
    align-items: center;
}

.resultados {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px; /* Espaço entre os grupos de resultados */

}

.resultados div {
    background-color: #1a1817;
    border-radius: 10px;
    padding: 10px;
    width: 200px; /* Ajuste conforme necessário para a largura dos cards */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.resultados img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    max-height: 300px; /* Limita a altura da imagem */
    object-fit: cover; /* Garante que a imagem cubra o espaço designado */
}

.haha {
    display:none;
    margin-top:20px;
    margin-bottom: 40px;
    width: 50%;
    border: 1px solid #3b3b3b;
}

#musicaInfo {
    display: none;
    background-color: #1a1817;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px; /* Espaço entre a informação da música e os resultados */
    text-align: center;
    width: 100%; /* Garante alinhamento central */
    max-width: 1200px; /* Limita a largura máxima para grandes monitores */
}

#musicaInfo p {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff; /* Garante visibilidade do texto */
}

.album-card {
    cursor:pointer;
    transition: background-color 0.5s ease;
}

.album-card:hover {
    background-color: #fd3d00;
}

.fading {
    animation: fadeOut 2s infinite; /* Exemplo com animação infinita */
}

@keyframes fadeOut {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}


.input-enviar-container {
    display:none;
    justify-content: center; 
    align-items: center;
    gap: 10px;
    margin-top: 20px; 
    margin-bottom: 30px; 
}


#urlInput {
    padding: 10px;
    font-size: 16px;
    border: 2px solid #fd3d00;
    border-radius: 20px;
    color: #ffffff;
    background-color: #1a1817;
    margin-right: 10px; /* Espaçamento entre o input e o botão Enviar */
    width: 500px;
}

#enviarBtn, #uploadFileBtn {
    background-color: #fd3d00;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
    text-align: center;
}

.file-input-label {
    background-color: #fd3d00;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
    text-align: center;
    margin-left: 10px; /* Ajuste conforme necessário */
}

#fileInput {
    display: none; /* Esconde o input de arquivo real */
}


/* Login */

#loginForm {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1a1817;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    display: none;
}


#loginForm input[type="text"],
#loginForm input[type="password"] {
    margin-bottom: 15px;
    font-size: 16px;
    padding: 10px; 
    border: 1px solid #ddd;
    border-radius: 20px; 
    background-color: #0d0c0b;
    color: #ffffff;
    width: calc(100% - 20px);
}

#loginForm button {
    background-color: #fd3d00; 
    color: #ffffff;
    padding: 10px 20px;
    font-size: 16px; 
    border: none;
    border-radius: 20px;
    cursor: pointer; 
    font-weight: 700; 
}


#loginForm button:hover {
    background-color: #e53700; 
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Torna a altura do contêiner igual à altura da viewport */
    width: 100%;
}