* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    display: flex;
}

.conteiner {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}

.dados {
    position: absolute;
    z-index: 1000;
    right: 10px;
}

.menu-download {
    background: white;
    padding: 10px;
    border: 1px solid #ccc;
    position: absolute;
    top: 50px;
    right: 10px;
    z-index: 1001;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 6px;
    width: 200px;
  }
  
  .menu-download select,
  .menu-download button {
    padding: 6px;
    font-size: 14px;
  }
  
  .oculto {
    display: none;
  }
  
  #abrirMenuBtn {
    padding: 8px 14px;
    margin: 10px;
    font-size: 14px;
    cursor: pointer;
  }