body {
    background-color: #f8f8f8;
  }
  .bg-custom-gray {
    background-color: #f8f8f8;
  }

  /* Standard non-table form styling */
  .label-standard {
    text-align: left;
    font-size: 10pt;
    color: #6b7280;
  }

  .input-standard input,
  .select-standard select {
    width: 100%;
    border: 1px solid #d1d5db;
    background-color: #f9fafb;
    padding: 0.2rem;
    font-size: 10px;
    border-radius: 0rem;

  }

  /* Standard table styling */
  .table-standard {
    width: 100%;
    border-collapse: collapse;
  }

  .table-standard td {
    padding: 0.75rem;
    vertical-align: top;
    border-bottom: 1px solid #e5e7eb;
  }

  .table-standard td:first-child {
    width: 120px;
    font-weight: 500;
    text-align: left;
    padding-right: 1.5rem;
    white-space: nowrap;
    font-size: 10pt;
    color: #6b7280;
  }

  .table-standard input,
  .table-standard select {
    width: 100%;
    border: 1px solid #d1d5db;
    background-color: #f9fafb;
    padding: 0.5rem;
    font-size: 10pt;
    border-radius: 0.375rem;
  }

  .table-standard input:focus,
  .table-standard select:focus {
    outline: none;
    border-color: #9ca3af;
    background-color: #ffffff;
  }

  /* Standard text styling */
  .text-standard {
    font-size: 10pt;
    color: #6b7280;
    line-height: 1.5;
  }

  .text-standard input,
  .text-standard select {
    width: 100%;
    border: 1px solid #d1d5db;
    background-color: #f9fafb;
    padding: 0.2rem;
    font-size: 10pt;
    border-radius: 0rem;
  }

  .text-standard input:focus,
  .text-standard select:focus {
    outline: none;
    border-color: #9ca3af;
    background-color: #ffffff;
  }

  /* Standard button styling */
  .button-standard {
    background-color: #010035;
    color: white;
    border-radius: 8px;
    min-width: 100px;
    padding: 0.5rem 1rem;
    border: 1;
    cursor: pointer;
    font-size: 10pt;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.2s ease;
  }

  .button-standard:hover {
    background-color: white;
    color: #010035;
    border: 1px solid #010035;
  }

  .button-secondary {
    background-color: #e5e7eb;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
  }

  .button-secondary:hover {
    background-color: #d1d5db;
  }

  /* Modal styles */
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .modal-content {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal.hidden {
    display: none;
  }

  /* TinyMCE styles */
  .tox-tinymce {
    border: 1px solid #e2e8f0 !important;
    border-radius: 0.375rem !important;
  }

  .description-wrapper {
    min-height: 100px;
  }

  /* Textarea styles */
  textarea {
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    padding: 0.5rem;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    line-height: 1.5;
  }