#main-aside {
  z-index: 100;
}

#main-header {
  z-index: 50;
}

.customButton {
  padding: 0.5rem 1.25rem;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  color: #ffffff;
  background-color: black;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.customInput {
  border: 1px solid #d1d5db;
  padding: 0.5rem 1rem;
  outline: none;
}

/* Modal */
#confirmContainer {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  color: #333;
  z-index: 1000;
}

#confirmContainerInput {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  color: #333;
  z-index: 1000;
}

#confirmMessage {
  text-align: center;
  margin-bottom: 20px;
}

#confirmButtons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

#confirmButtonsInput {
  display: flex;
  gap: 20px;
  justify-content: center;
}

#confirmYes {
  background-color: green;
  color: white;
  font-weight: 700;
  padding: 10px;
  cursor: pointer;
  min-width: 100px;
}

#confirmNo {
  background-color: red;
  color: white;
  font-weight: 700;
  padding: 12px;
  cursor: pointer;
  min-width: 100px;
}

#confirmYesInput {
  color: white;
  font-weight: 700;
  padding: 10px;
  cursor: pointer;
  min-width: 100px;
}
#confirmUpdateInput {
  color: white;
  background-color: green;
  font-weight: 700;
  padding: 10px;
  cursor: pointer;
  min-width: 100px;
}

#confirmNoInput {
  background-color: red;
  color: white;
  font-weight: 700;
  padding: 12px;
  cursor: pointer;
  min-width: 100px;
}

#confirmOverlay {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* .swal2-modal {
  width: 70% !important;
} */

@media (max-width: 768px) {
  .swal2-modal {
    width: 100% !important;
  }
}
