.limited {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .full-width {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
  }
  body.gradient-bg {
    background: linear-gradient(135deg, #121212 0%, #1e1e1e 40%, #212529 100%);
    background-attachment: fixed;
  }
  
  /***** Glassmorphism card *****/
  .card.glass {
    backdrop-filter: blur(8px) saturate(140%);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  textarea.form-control {
    resize: vertical;
    font-family: "Fira Code", monospace;
  }
  
  .table-group-divider > tr:not(:last-child) > * {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Focus styles */
  textarea:focus {
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.5);
  }
  
  /* Scrollbar subtle */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-thumb {
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
  }
  
  .select2-container--default .select2-results > .select2-results__options {
    background-color: #1f2937; /* bg-zinc-800 */
    color: #ffffff;            /* text-white */
  }
  
  .select2-container--default .select2-selection--single {
    background-color: #1f2937; /* bg-zinc-800 */
    color: #ffffff;
    border: 1px solid #4b5563; /* border-zinc-600 */
  }
  
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #ffffff;
  }
  
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    color: #ffffff;
  }

  .select2-search--dropdown .select2-search__field {
    color: #fff !important;
    background-color: #1f2937 !important; /* zinc-800 */
    border: 1px solid #4b5563 !important; /* zinc-600 */
    padding: 6px !important;
    font-size: 14px;
  }

  .select2-container--default .select2-results > .select2-results__options {
    background-color: #1f2937;
    color: #ffffff;
  }
  
  .select2-container--default .select2-selection--single {
    background-color: #1f2937;
    color: #ffffff;
    border: 1px solid #4b5563;
  }
  
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #ffffff;
  }
  
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    color: #ffffff;
  }