body {
  box-sizing: border-box;
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  /* Assuming default alignment should be left */
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  margin-top: 25px;
  background-color: rgb(248, 249, 250) !important;
}

.container {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
  width: 450px;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1140px;
  border: solid 1px rgb(222, 226, 230) !important;
  padding-bottom: 1rem !important;
  background-color: rgb(255, 255, 255) !important;
}

@media screen and (max-width: 768px) {
  .container {
    width: calc(100% - 10px);
    margin-left: 5px;
    margin-right: 5px;
  }
}

.container-fluid {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1140px;
  border: solid 1px rgb(222, 226, 230) !important;
  padding-bottom: 1rem !important;
  background-color: rgb(255, 255, 255) !important;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="password"] {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
  margin: 0;
  font-family: inherit;
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  appearance: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.btn {
  padding: 0.375rem 0.75rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  user-select: none;
  border: 1px solid #007bff;
  border-radius: 0.25rem;
  background-color: #007bff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  cursor: pointer;
}

.btn:hover {
  color: #fff;
  background-color: #0056b3;
  border-color: #004085;
}

.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, .5);
}

.btn:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
  opacity: 0.65;
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.action-auth--table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: 'Arial', sans-serif;
  overflow: hidden;
  margin: 20px 0;
}

.action-auth--table thead {
  background-color: #007BFF;
  color: #ffffff;
}

.action-auth--table th,
.action-auth--table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #dddddd;
}

.action-auth--table tr:last-child {
  border-bottom: none;
}

.action-auth--table th {
  position: sticky;
  top: 0;
  z-index: 10;
}

.action-auth--table tbody tr:hover {
  background-color: #f1f1f1;
}

.action-auth--table td {
  transition: background-color 0.3s;
}

.action-auth--text-center {
  text-align: center !important;
}

@media (prefers-color-scheme: dark) {
  body {
    color: #d5c4a1;
    background-color: #282828 !important;
  }

  .container,
  .container-fluid {
    background-color: #3c3836 !important;
    border-color: #3c3836 !important;
  }

  input[type="text"],
  input[type="email"],
  input[type="number"],
  input[type="tel"],
  input[type="password"] {
    color: #d5c4a1;
    background-color: #282828;
    border-color: #3c3836;
  }

  .btn {
    color: #fbf1c7;
    background-color: #d65d0e;
    border-color: #d65d0e;
  }

  .btn:hover {
    background-color: #cc241d;
    border-color: #cc241d;
  }

  .btn:focus {
    box-shadow: 0 0 0 0.25rem rgba(214, 93, 14, .5);
  }

  .btn:disabled {
    background-color: #d65d0e;
    border-color: #d65d0e;
    color: #fbf1c7;
  }

  .action-auth--table {
    background-color: #3c3836;
    color: #d5c4a1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  }

  .action-auth--table thead {
    background-color: #d79921;
    color: #282828;
  }

  .action-auth--table th,
  .action-auth--table td {
    border-bottom: 1px solid #504945;
  }

  .action-auth--table tbody tr:hover {
    background-color: #282828;
  }

  a {
    color: #83a598;
    text-decoration: none;
  }

  a:visited {
    color: #d3869b;
  }

  a:hover {
    color: #fabd2f;
  }
}
