.studio-cover {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    margin-bottom: 20px;
}

.studio-profile {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #eee;
    margin-bottom: 25px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.studio-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 25px;
    border: 4px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.studio-info h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.studio-username {
    color: #6e6e6e;
    margin-top: 4px;
}

.studio-stats {
    margin-top: 8px;
    color: #444;
    font-size: 14px;
}

.studio-stats span {
    margin-right: 16px;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 22px;
}

.album-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 12px;
    transition: 0.25s;
}

.album-cover {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}


.voltar-link {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #ff6a00;
    font-weight: bold;
}

.titulo-upload {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

.album-info-bloco {
    padding: 15px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #e3e3e3;
    margin-bottom: 20px;
}

.album-titulo {
    font-size: 22px;
    font-weight: bold;
}

.album-slug {
    font-size: 15px;
    color: #777;
}

.uploader-box {
    width: 100%;
    margin: 25px 0;
}

.uploader-iframe {
    width: 100%;
    height: 420px;
    border: 0;
    background: #fff;
    border-radius: 10px;
}

.musicas-enviadas-title {
    margin-top: 40px;
    font-size: 22px;
    font-weight: bold;
}

.nenhuma-musica {
    font-size: 15px;
    color: #777;
}

.tabela-musicas {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.tabela-musicas th {
    background: #f5f5f5;
    padding: 10px;
    text-align: left;
    font-size: 14px;
}

.tabela-musicas td {
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
}

.tabela-musicas tr:hover {
    background: #fdfdfd;
}