body {
            font-family: Arial, sans-serif;
            background-color: #f3f3f3;
            color: #333;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh; /* Para ocupar toda a altura da viewport */
        }

        header {
            text-align: center;
            padding: 20px 0;
            background-color: #16ca72;
            color: #fff;
        }

nav {
    flex-grow: 1; /* Para ocupar o espaço restante no header */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* Centraliza os itens na horizontal */
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    text-decoration: underline;
}


        main {
            flex: 1; /* Para ocupar o espaço restante */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        footer {
            width: 100%;
            text-align: center;
            background-color: #16ca72;
            color: #fff;
            padding: 10px 0;
            position: flex;
            bottom: 0;
        }

        footer a {
            color: #fff;
            text-decoration: none;
            padding: 0 10px;
        }

        footer a:hover {
            text-decoration: underline;
        }
        h1 {
            margin: 20px 0;
        }

        form {
            margin-bottom: 20px;
        }

        #search-input {
            padding: 10px;
            font-size: 16px;
            width: 50%;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        button {
            padding: 10px 20px;
            font-size: 16px;
            color: #fff;
            background-color: #2c2b2d;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        button:hover {
            background-color: #1aa34a;
        }

        #music-list {
            width: 100%;
            max-width: 600px;
    max-height: 350px; /* Limita a altura máxima da lista */
    overflow-y: auto; /* Adiciona barra de rolagem vertical quando necessário */
        }

        .card {
            background-color: rgba(255, 255, 255, 0.8); /* Fundo semitransparente */
            border: 1px solid rgba(255, 255, 255, 0.6); /* Borda semitransparente */
            border-radius: 8px;
            padding: 10px;
            margin: 10px 0;
            display: flex;
            align-items: center;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px); /* Efeito de desfoque */
        }

        .card img {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            margin-right: 10px;
        }

        .song-details {
            flex-grow: 1;
        }

        .song-title {
            font-size: 16px;
            font-weight: bold;
        }

        .artist {
            color: #666;
        }

        #player-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            display:none;
            width: 100%;
            max-width: 600px;
            margin: auto;
            padding: 20px;
            margin-top:10px;
            border: 1px solid #ccc;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        #player {
            display: none; /* Esconde o iframe do vídeo */
        }
        #controls {
            display: flex;
            justify-content: center;
            margin-bottom: 10px;
        }
        #controls button {
            background: none;
            border: none;
            margin: 0 10px;
            cursor: pointer;
        }
        #time-info {
            display: flex;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 10px;
            font-family: Arial, sans-serif;
            font-size: 14px;
            color: #333;
        }
        #progress-bar {
            width: 100%;
            height: 10px;
            background-color: #e0e0e0;
            border-radius: 5px;
            overflow: hidden;
            margin-bottom: 20px;
        }
        #progress {
            width: 0;
            height: 100%;
            background-color: #76c7c0;
        }
        #album-info {
            display: flex;
            align-items: center;
            width: 100%;
        }
        #album-art {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 20px;
        }
        #album-details {
            flex: 1;
            font-family: Arial, sans-serif;
            font-size: 14px;
            color: #333;
        }
        #album-title {
            font-weight: bold;
            margin-bottom: 5px;
        }
        #album-artist {
            color: #666;
        }
        .rotating {
            animation: rotation 2s infinite linear;
        }
        @keyframes rotation {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

#radioList {
    list-style-type: none;
    padding: 0;
    max-width: 600px;
    max-height: 350px; /* Limita a altura máxima da lista */
    overflow-y: auto; /* Adiciona barra de rolagem vertical quando necessário */
    margin: auto;
}
        #radioList li {
            margin-bottom: 10px;
            border: 1px solid #ccc;
            padding: 10px;
            cursor: pointer;
        }
        #radioList li:hover {
            background-color: #f0f0f0;
        }
        #radioPlayer {
            margin-top: 20px;
            text-align: center;
        }
        
        /* Estilos para a barra de rolagem */
::-webkit-scrollbar {
    width: 10px; /* Largura da scrollbar */
}

/* Estilo da bola ou qualquer forma */
::-webkit-scrollbar-thumb {
    background-color: #16ca72; /* Cor de fundo da bola */
    border-radius: 10px; /* Raio da borda da bola */
    margin-left:20px;
}

/* Estilo ao passar o mouse sobre a bola */
::-webkit-scrollbar-thumb:hover {
    background-color: #aaa; /* Cor de fundo ao passar o mouse */
}






    .container2 {
      display: flex;
      justify-content: center; /* Centraliza horizontalmente */
      align-items: center; /* Centraliza verticalmente */
      padding: 5px;
    }

    .fixed-text {
      font-size: 36px;
      font-weight: bold;
      margin-right: 10px;
      
    }

    .animated-text {
      display: flex;
      align-items: center;
    }

    .splt {
      display: none; /* Inicialmente oculto */
      font-size: 36px;
      margin-right: 5px;
      font-weight: bold;
      animation: fadeInUp 0.5s ease-in-out forwards; /* Animação de aparecimento */
    }
    .splt:last-child {
      position: relative; /* Importante para ajustar a posição */
      animation: fallToRight 0.5s ease-in-out forwards; /* Animação de queda para a direita */
    }


    @keyframes fadeInUp {
      0% {
        transform: translateY(10px);
        opacity: 0;
      }
      100% {
        transform: translateY(0);
        opacity: 1;
      }
    }
    @keyframes fallToRight {
      0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
      }
      100% {
        transform: translateY(100px) rotate(90deg);
        opacity: 0;
      }
    }