#calculatorDuo, form{
    width: 100%;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    display: flex;
    gap:10px;
    top:200px;
  }

  .container3{
    width: 100%;
    height: 100%;
    margin: 20px auto;
    flex-direction: row;
    align-items:center;
    justify-content:center;
    display: flex;
    gap:5px;
    flex-wrap: wrap;
  
  }

  .border, #zCalcRep{
    border:1px solid #b477f0;
    border-radius: 5px;
    padding: 10px;
    width: 350px;
  
  }

  #formatSelect, #yearSel, #monthSel, #daySel, #dificuldade, #comissao, #resizeOption, #widthUnit, #heightUnit{
    border-radius: 5px;
    padding: 15px;
    margin:5px;
    min-height: 50px;
    background-color:#252525;
    color: rgb(226, 226, 226);
   }

   .personalizar-option{
    background: rgb(226, 226, 226);
    color: #252525;
  }  
  .personalizar-option:hover{
    background: rgb(226, 226, 226);
    color: #252525;
  }
  
  #form{
    border:1px solid rgb(226, 226, 226);
    width: 90%;
  }

   .textleft{
    text-align: justify;
    width:50%;
  }

  .seletor{
    padding: 14px;
    border-radius: 5px;
    color:#252525;
    }

/* botão normal*/

.buttonedit {
    border: 5px solid linear-gradient(to right, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8 ); /* Gradiente */ /* Largura e estilo da borda */
    margin: 10px;
    padding: 12px;
    justify-content: left;
    flex-direction: row;
    align-items: center;
    display: flex;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    gap:10px;
    text-align: left;
    height:50px;
    }

.excluir{
  background-color: rgb(191, 36, 36) !important;
  color:  rgb(226, 226, 226);
  padding: 12px;
  cursor: pointer;
  border-radius: 5px;
}

.excluir:hover {
  background-color: rgb(226, 226, 226) !important;
  color:  #bf2424;
}

.duplicar{
  background-color: #8E5EBD !important;
  color:  rgb(226, 226, 226);
  padding: 12px;
  cursor: pointer;
  border-radius: 5px;
}

.duplicar:hover {
  background-color: rgb(226, 226, 226) !important;
  color:   #8E5EBD;
}

.baixar{
  background-color: rgb(226, 226, 226)!important;
  color:  #252525;
  padding: 12px;
  cursor: pointer;
  border-radius: 5px;
}

.baixar:hover {
  background-color: #252525 !important;
  color:  rgb(226, 226, 226);
}

.ativar{
  background-color: #252525 !important;
  color:  rgb(226, 226, 226);
  padding: 12px;
  cursor: pointer;
  border-radius: 5px;
}

.ativar:hover {
  background-color: rgb(226, 226, 226)!important;
  color:  #252525;
}

textarea {
    margin: 10px;
    padding: 20px;
    border-color:  #252525;
    width: 90%;
    height: 200px;
    border-radius: 10px;
  }
  i{
    margin-right:12px;
  }


  #loadingIndicator {
    margin-top: 10px;
    font-weight: bold;
    color: #555;
  }
  
  .spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #555;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  