    .container {
      max-width: 70%;
      margin-left: auto;
      margin-right: auto;
      padding-left: 1rem;
      padding-right: 1rem;
    }

    * {
      font-family: 'Roboto', sans-serif;
      font-optical-sizing: auto;
    }

    body {
      background-color: white;
    }

    h2 {
      text-align: center;
      font-weight: 450;
    }

    h5 {
      text-align: center;
      font-size: 14pt;
      margin-bottom: 2px;
    }

    th {
      font-size: 12pt;
      text-align: center;
    }

    td {
      font-size: 12pt;
    }

    button,
    a {
      font-size: 10pt;
      padding: 0.5rem 1.5rem;
    }

    option {
      font-size: 11pt;
    }

    .form-wrapper {
      width: 50%;
      margin-left: auto;
      margin-right: auto;
    }

    .form-block {
      background: white;
      padding: 0.75rem;
      padding-bottom: 1rem;
      border: none;
      border-radius: 8px;
      margin-bottom: 1rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .form-block label {
      display: block;
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
    }

    .form-block select {
      background: white;
    }

    .form-block input,
    .form-block select,
    .form-block textarea {
      width: 100%;
      font-size: 12pt;
      padding: 0.75rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      border: none;
      border-radius: 4px;
      resize: none;
      box-sizing: border-box;
    }

    .form-block input:focus,
    .form-block select:focus,
    .form-block textarea:focus {
      outline: none;
      border-color: #1D6D86;
      box-shadow: 0 0 0 2px #c7dcff;
    }

    .nav-bar {
      margin-left: auto;
      margin-right: auto;
      /* justify-content: center; */
      /* flex-wrap: nowrap; */
      /* max-width: 50%; */
      top: 0;
      position: sticky;
      backdrop-filter: blur(10px);
      padding: 12px;
      margin-bottom: 32px;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 999;
      background: white;
      text-align: center;
    }

    .nav-bar-button {
      border-radius: 6px;
      font-size: 16px;
      margin-left: 2px;
      margin-right: 2px;
      padding: 8px 16px;
      color: black;
      background-color: #F8FAFC;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-bar-button:hover {
      background-color: #ebf5fc;
    }

    .nav-bar-button.active {
      background-color: #1D6D86;
      color: white;
    }

    .nav-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .left-nav {
      left: 0;
      position: absolute;
      margin-left: 10px;
      top: 2%;
      text-decoration: none;
    }

    .global-top {
      width: 100%;
      padding: 0px 0px;
    }

    .global-top nav {
      display: flex;
      justify-content: flex-start;
      align-items: center;
    }

    .nav-link {
      text-decoration: none;
      color: black;
      /* font-weight: 500; */
      color: black;
      font-size: 16px;
      padding: 8px 8px;
      border-radius: 6px;
    }

    .nav-link:hover {
      text-decoration: underline;
    }

    .a-button {
      display: inline-block;
    }

    .button-row {
      width: 60%;
      margin-top: 1rem;
      display: flex;
      justify-content: flex-start;
      gap: 0.5rem;
    }

    .button-row button,
    .button-row .a-button {
      padding: 0.6rem 2rem;
      font-size: 12pt;
      border: none;
      border-radius: 6px;
      background-color: #007bff;
      color: white;
      cursor: pointer;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      transition: background 0.2s ease;
      text-decoration: none;
    }

    .button-row button:hover,
    .button-row .a-button:hover {
      background-color: #0056b3;
    }


    button,
    .a-button {
      padding: 0.6rem 2rem;
      background-color: #1a73e8;
      border-radius: 6px;
      border: none;
      font-size: 16px;
      margin-left: 2px;
      margin-right: 2px;
      color: white;
      cursor: pointer;
      transition: background-color 0.2s ease;
      text-decoration: none;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    button:hover {
      background-color: #1669c1;
    }

    button:active {
      background-color: #0d47a1;
    }

    @media print {
      body {
        zoom: 55%;
        font-size: 12pt;
      }

      .no-print {
        display: none;
      }

      table {
        font-size: 9pt;
        width: 100%;
        border-collapse: collapse;
      }

      th,
      td {
        padding: 4px;
        border: 1px solid black;
      }
    }

    .table-wrapper {
      width: 50%;
      margin-left: auto;
      margin-right: auto;
    }

    .table-wrapper-expanded {
      width: 100%;
      margin-left: auto;
      margin-right: auto;
    }

    .styled-table {
      width: 100%;
      font-family: sans-serif;
      font-size: 0.9rem;
      border-collapse: separate;
      border-spacing: 0;
      border-radius: 12px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .styled-table th,
    .styled-table td {
      padding: 12px 15px;
      text-align: left;
    }

    .styled-table th {
      background-color: white;
    }

    .styled-table tr:nth-child(odd) {
      background-color: #f2f2f2;
    }

    .styled-table tr:nth-child(even) {
      background-color: white;
    }

    .styled-table th:first-child {
      border-top-left-radius: 12px;
    }

    .styled-table th:last-child {
      border-top-right-radius: 12px;
    }

    .styled-table tr:last-child td:first-child {
      border-bottom-left-radius: 12px;
    }

    .styled-table tr:last-child td:last-child {
      border-bottom-right-radius: 12px;
    }

    .styled-table td.no-box {
      background-color: inherit;
      padding: 0.25rem;
      box-shadow: none;
      display: flex;
      justify-content: center;
      align-items: center;
      border: none;
      border-radius: 0;
    }

    .trash-button {
      background: transparent;
      color: #901616;
      border: none;
      cursor: pointer;
      margin-top: 10px;
      padding: 0.4rem 0.6rem;
      font-size: 1rem;
      box-shadow: none;
      transition: color 0.2s ease;
    }

    .trash-button:hover {
      background: transparent;
      color: #FF0000;
    }

    .styled-table td.no-box {
      padding: 0.25rem;
      box-shadow: none;
      display: flex;
      justify-content: center;
      align-items: center;
      border: none;
      border-radius: 0;
    }

    .shadow-row .trash-button {
      display: none;
    }

    .styled-table input,
    .styled-table select,
    .styled-table textarea {
      background: white;
      border: none;
      box-sizing: border-box;
      width: 100%;
      font-size: 12pt;
      padding: 0.55rem;
      border: none;
      border-radius: 4px;
      resize: none;
      box-sizing: border-box;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .styled-table input:focus {
      outline: none;
      box-shadow: 0 0 0 2px #c7dcff;
    }

    .shadow-row {
      opacity: 0.6;
      transition: opacity 0.3s ease;
    }

    .shadow-row input {
      background-color: #f0f0f0;
      border: 1px dashed #aaa;
    }

    .shadow-row select {
      background-color: #f0f0f0;
      border: 1px dashed #aaa;
    }

    .shadow-row input:focus {
      background-color: #fff;
      border: 1px solid #ccc;
    }

    .table-wrapper-review {
      width: 70%;
      margin-left: auto;
      margin-right: auto;
    }

    .table-wrapper-review>div {
      margin-bottom: 2rem;
    }

    .review-button {
      display: flex;
      align-items: left;
      justify-content: left;
      gap: 0.5rem;
      margin: 0;
      margin-bottom: 0.75rem;
      font-size: 1.2rem;
    }

    .edit-button {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
      background-color: white;
      border-radius: 6px;
      border: none;
      font-size: 16px;
      margin-left: 2px;
      margin-right: 2px;
      color: black;
      cursor: pointer;
      transition: background-color 0.2s ease;
      text-decoration: none;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .edit-button:hover {
      background-color: #ebf5fc;
    }

    .edit-button:active {
      background-color: #1D6D86;
    }

    .table-wrapper-completed {
      width: 80%;
      margin-left: auto;
      margin-right: auto;
    }


    .li-search {
      background: none;
      padding: 2px 4px;
      cursor: pointer;
      font-size: 14px;
      margin-bottom: 0.5rem;
      margin-right: 0.5rem;
    }

    .li-search:hover {
      background-color: #A4C4CE;
      border-radius: 3px;
    }

    .ticket-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .ticket-link {
      background: transparent;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-radius: 8px;
      margin-bottom: 0.2rem;
      text-decoration: none;
      color: inherit;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      font-size: 12pt;
    }

    .a-button-right {
      position: absolute;
      right: 250px;
    }

    h1 {
      display: flex;
      margin-bottom: 16px;
      margin-top: 10px;
      justify-content: center;
      align-items: center;
    }

    caption {
      background-color: white;
      font-size: 1rem;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      z-index: 10;
      padding-bottom: 6px;
      text-align: left;
      padding-top: 10px;
      font-weight: 600;
      font-size: 18px;
    }

    .table-title-row th {
      background-color: white;
      font-size: 18px;
      font-weight: 600;
      text-align: left;
      padding: 10px 15px;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    }

    .a-services {
      font-size: 20px;
    }


    .form-group {
      margin-bottom: 1rem;
      text-align: left;
    }

    .form-group label {
      display: block;
      font-weight: bold;
      margin-bottom: 0.4rem;
    }

    .form-group input {
      width: 100%;
      padding: 0.65rem;
      font-size: 1rem;
      border-radius: 4px;
      border: none;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .ampx-button {
      margin-top: 1rem;
      padding: 0.75rem 1.5rem;
      cursor: pointer;
      width: 100%;
      font-size: 1rem;
      border-radius: 4px;
      border: none;
      background-color: #007bff;
      color: white;
    }

    .login-container {
      max-width: 400px;
      width: 90%;
      margin-top: 5%;
      padding: 1.75rem;
      background: white;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
      margin-left: auto;
      margin-right: auto;
      align-content: center;
    }

    .login-logo {
      width: 300px;
      height: auto;
      margin-bottom: 1rem;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .table-edit-button {
      background: inherit;
      color: black;
      border: none;
      cursor: pointer;
      margin-top: 10px;
      padding: 0.4rem 0.6rem;
      font-size: 0.90rem;
      box-shadow: none;
      transition: color 0.2s ease;
    }

    .table-edit-button:hover {
      background: inherit;
      color: #FF0000;
    }

    .input-wrapper {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 0;
      margin: 0;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    .name-input,
    .role-input {
      outline: none;
      box-shadow: none;
      border-radius: 4px;
      border: none;
    }

    .name-input:focus,
    .role-input:focus {
      border-top-left-radius: 4px;
      border-top-right-radius: 4px;
      border-bottom-left-radius: 0 !important;
      border-bottom-right-radius: 0 !important;
    }

    .name-input.no-bottom-radius,
    .role-input.no-bottom-radius {
      border-radius: 4px 4px 0 0 !important;
    }

    .suggestions-wrapper {
      position: absolute;
      top: 100%;
      background: white;
      border: none;
      border-radius: 0 0 4px 4px;
      z-index: 9999;
      max-height: 150px;
      box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.3);
      overflow-y: auto;
    }

    .suggestions-wrapper::-webkit-scrollbar {
      display: none;
    }

    .suggestions-wrapper .item {
      padding: 0.5rem 0.75rem;
      cursor: pointer;
    }

    .tickets-checkbox {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .tickets-header-row {
      position: relative;
      margin-bottom: 1rem;
      text-align: center;
    }

    .tickets-header-row .create-ticket-button {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
    }

    .error-message {
      color: #b00020;
      background-color: #fdecea;
      border: 1px solid #f5c2c0;
      border-radius: 6px;
      margin-top: 10px;
      padding: 8px 12px;
      font-size: 0.9rem;
      display: inline-block;
    }

    .error-message li {
      list-style: none;
      margin: 2px 0;
    }

    ul.error-message {
      list-style: none;
      padding: 2;
    }

    .input-error {
      border: 2px solid red;
      background-color: #ffe6e6;
    }