.popup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999999999;
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(1); /* tenta inverter cor */
    cursor: pointer;
}

.popup.hidden {
  display: none;
}

.popup-content {
    width: 60%;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    min-width: 300px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    position: relative;
    background-image: linear-gradient( to left, #062058, #031335);

    & h3 {
        margin-bottom: 12px !important;
    }
}
.param_button {
  background-image: linear-gradient(to right, #062058, #031335);
  padding: 10px 20px;
  border: none;              /* Remove borda */
  border-radius: 8px;
  box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.447);
  outline: none;             /* Remove contorno padrão */
}

.reverse_color{
    background-image: linear-gradient(to left, tomato, #031335);
}

/* Remove outline e box-shadow nos estados de foco e clique */
.param_button:focus,
.param_button:active {
  outline: none !important;  /* !important ajuda a sobrescrever estilos gerais */
  box-shadow: none !important;
  border: none !important;
}

/* Também pode prevenir efeitos específicos em navegadores móveis (ex: iOS) */
.param_button {
  -webkit-tap-highlight-color: transparent; /* Remove destaque azul em Safari/iOS */
}

.close {
  position: absolute;
  top: 10px; right: 15px;
  cursor: pointer;
  font-size: 20px;
  color: white !important;
  font-size: 30px;
}

.form-group{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 0px;
    width: 85%;

    & label{
        margin: 0px;
        margin-left: 2px;
    }
}

#paramForm{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: transparent;
    gap: 5px;

    & input {
          background-color: rgba(0, 0, 0, 0.231) !important;
        padding: 8px;
        border-radius: 4px;

    }
}
