/* upload.css */
* {
    box-sizing: border-box;
    padding:0;
    margin: 0;
}
:root {
    --primary: #111926;
    --white: #fff;
    --background: #f5f5f5;
    --gray: #b5b5b5;
}
.class {
    font-family: 'Work Sans', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65vh;
    padding: 1rem;
    overflow-y: auto;
}
.dropzone-box {
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: #1119262a 0px 8px 24px;
    display: flex;
    justify-content:center;
    flex-direction: column;
    max-width: 36rem;
    width: 100%;  
    background-color: #fff;
}
.dropzone-box h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4e4760;
    margin-bottom: 0.5rem;
}
.dropzone-box p {
    color: #4e4760;
}
.dropzone-area {
    padding: 1rem;
    position: relative;
    margin-top: 1rem;
    min-height: 19rem;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px dashed #e04fe0;
    border-radius: 1rem;
    color:#7e7196;
    cursor:pointer;
}
.dropzone-area [type="file"] {
    width: 100%; height: 100%;
    cursor: pointer;
    position:absolute;
    opacity: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.dropzone-area .file-upload-icon img {
    height: 5rem;
    width: 5rem;
    margin-bottom: 0.5rem;
    stroke: #e04fe0;
}
.dropzone-area:hover {
    border-style: solid;
    background-color: #f5f5f5;
    color:#675e76;
}
.dropzone--over {
    border-style: solid;
    background-color: #f5f5f5;
}
.dropzone-actions {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #b5b5b5;

    flex-wrap: wrap;
}
.dropzone-actions button {
    flex-grow: 1;
    min-height: 3rem;
    font-size: 1.2rem;
    transition: color  0.5s, background-color 0.5s;
}
.dropzone-actions button[type="reset"]:hover {
    background-color: #e04fe0;
    color:#fff;
}

.dropzone-actions button[type="submit"]:hover {
    background-color: #fff; 
    color:#e04fe0;
    border: 1px solid #b5b5b5;
}
.dropzone-actions button[type="reset"] {
    background-color: transparent;
    border: 1px solid #b5b5b5;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    color: #c948c9;
    cursor:pointer;
}
.dropzone-actions button[type="submit"] {
    background-color: #e04fe0;
    border: 1px solid #e04fe0;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    color: #fff;
    cursor:pointer;
}



/* Estilos para o cartão de upload de tabela em My Network */ 
.custom-scrollbar-y::-webkit-scrollbar {
    margin-right: 5rem;
    width: 8px; /* Largura da barra de rolagem */
    height: 8px;
    background-color: #bfbfbfab;
    border-radius: 5px;
}
.custom-scrollbar-y::-webkit-scrollbar-thumb {
    background-color: #af6eff; /* Cor do botão de rolagem */
    border-radius: 5px; /* Arredondamento do botão de rolagem */
  }
/* Estilo da área de rastreamento (a área ao redor do botão de rolagem) */
.custom-scrollbar-y::-webkit-scrollbar-track {
    background-color: #bfbfbfab; /* Cor da área de rastreamento */
  }
  /* Estilo do botão de rolagem horizontal ao passar o mouse sobre ele */
  .custom-scrollbar-y::-webkit-scrollbar-thumb:hover {
    background-color: #9641ff; /* Cor do botão de rolagem ao passar o mouse sobre ele */
  }
  /* Estilizando o botão de seta para cima na barra de rolagem vertical */
  .custom-scrollbar-y div::-webkit-scrollbar-button:start:vertical {
    display: block; /* Garante que o botão seja exibido */
    background-color: #ddd; /* Cor do botão de seta */
  }
  
  /* Estilizando o botão de seta para baixo na barra de rolagem vertical */
  .custom-scrollbar-y div::-webkit-scrollbar-button:end:vertical {
    display: block; /* Garante que o botão seja exibido */
    background-color: #ddd; /* Cor do botão de seta */
  }
  /* Estilizando o botão de seta esquerdo na barra de rolagem horizontal */
  .custom-scrollbar-y div::-webkit-scrollbar-button:start:horizontal {
    display: block; /* Garante que o botão seja exibido */
    background-color: #ddd; /* Cor do botão de seta */
  }
  
  /* Estilizando o botão de seta direito na barra de rolagem horizontal */
  .custom-scrollbar-y div::-webkit-scrollbar-button:end:horizontal {
    display: block; /* Garante que o botão seja exibido */
    background-color: #ddd; /* Cor do botão de seta */
  }