* {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    background: #f4f6f8;
    color: #1f2937;
    font-family: Arial, Helvetica, sans-serif;
  }

  .container {
    max-width: 1200px;
    margin: 15px auto;
    padding: 0 20px;
  }

  .header {
    margin-bottom: 15px;
  }

  .header h1 {
    margin: 0 0 6px;
    font-size: 28px;
  }

  .header p {
    margin: 0;
    color: #6b7280;
		font-size: small;
  }

  .card {
    background: #fff;
    border: 1px solid #dfe3e8;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
	  
  .img-logo {
    max-width: 150px;
    margin-left:-5px;
  }
		
  .field {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .field.full {
    grid-column: 1 / -1;
  }

  label {
    font-size: 13px;
    font-weight: bold;
    color: #374151;
  }

  input,
  select {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #cfd5dc;
    border-radius: 6px;
    background: #fff;
    color: #111827;
    font-size: 14px;
  }

  input:focus,
  select:focus {
    outline: none;
    border-color: #2563eb;
  }

  .actions {
    margin-top: 20px;
  }

  button {
    padding: 11px 22px;
    border: 0;
    border-radius: 6px;
    background: #111827;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
  }

  button:hover {
    background: #1f2937;
  }

  button:disabled {
    opacity: .6;
    cursor: wait;
  }

  .status {
    display: none;
    margin-top: 20px;
    padding: 12px 14px;
    border-radius: 6px;
    background: #eef2ff;
    color: #3730a3;
    font-size: 14px;
  }

  .error {
    display: none;
    margin-top: 20px;
    padding: 12px 14px;
    border-radius: 6px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    font-size: 14px;
  }

  #result {
    display: none;
    margin-top: 25px;
  }

  .result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }

  .result-header h2 {
    margin: 0;
    font-size: 20px;
  }

  .prefix {
    font-family: monospace;
    font-size: 14px;
    background: #f3f4f6;
    padding: 6px 10px;
    border-radius: 5px;
  }

  .route-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
  }

  .route-table th,
  .route-table td {
    padding: 10px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    vertical-align: top;
  }

  .route-table th {
    background: #f9fafb;
    font-weight: bold;
  }

  .badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: bold;
  }

  .badge.active {
    background: #dcfce7;
    color: #166534;
  }

  .badge.inactive {
    background: #f3f4f6;
    color: #6b7280;
  }

  .as-path {
    font-family: monospace;
    white-space: nowrap;
  }

  .graph-card {
    margin-top: 25px;
  }

  .graph-card h3 {
    margin: 0 0 15px;
    font-size: 17px;
  }

  .graph {
    overflow-x: auto;
    padding: 15px;
    background: #fafafa;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    text-align: center;
  }

  .graph svg {
    max-width: 100%;
    height: auto;
  }

  .empty {
    padding: 30px;
    text-align: center;
    color: #6b7280;
  }

  @media (max-width: 700px) {
    .form-grid {
      grid-template-columns: 1fr;
    }

    .field.full {
      grid-column: auto;
    }

    .result-header {
      align-items: flex-start;
      flex-direction: column;
    }

    .route-table {
      font-size: 12px;
    }
  }

  /*
 * -----------------------------------------------------
 * BGP Graph
 * -----------------------------------------------------
 */
  .graph-svg {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .graph-svg svg {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  @media (max-width: 700px) {
    .graph-svg {
      max-width: 100%;
    }
  }

	.bgp-legend {
	  display: flex;
	  flex-wrap: wrap;
	  align-items: stretch;
	  gap: 10px;
	  margin-top: 14px;
	  padding: 14px;
	  background: #ffffff;
	  border: 1px solid #e5e7eb;
	  border-radius: 8px;
	}

	.bgp-legend-title {
	  width: 100%;
	  margin-bottom: 2px;
	  color: #16324f;
	  font-size: 13px;
	  font-weight: 700;
	}

	.bgp-legend-item {
	  display: flex;
	  align-items: center;
	  gap: 7px;
	  min-width: 145px;
	  padding: 7px 10px;
	  background: #f8fafc;
	  border: 1px solid #e5e7eb;
	  border-radius: 6px;
	  box-sizing: border-box;
	}

	.bgp-legend-swatch {
	  width: 12px;
	  height: 12px;
	  flex: 0 0 12px;
	  border-radius: 3px;
	  border: 1px solid rgba(0, 0, 0, 0.12);
	}

	.bgp-legend-text {
	  display: flex;
	  flex-direction: column;
	  line-height: 1.2;
	}

	.bgp-legend-label {
	  color: #16324f;
	  font-size: 12px;
	  font-weight: 700;
	}

	.bgp-legend-description {
	  margin-top: 2px;
	  color: #64748b;
	  font-size: 10px;
	}

	.bgp-legend-note {
	  width: 100%;
	  margin-top: 2px;
	  color: #64748b;
	  font-size: 10px;
	}

  /* ---------------------------------------------------------
   * BGP Graph Presentation
   * --------------------------------------------------------- */

  .bgp-graph-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 18px;
    align-items: start;
  }

  .bgp-graph-main {
    min-width: 0;
  }

  .bgp-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .bgp-panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
  }

  .bgp-panel h4 {
    margin: 0 0 14px;
    font-size: 15px;
    color: #111827;
  }

  .bgp-panel-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #374151;
    margin: 0 0 9px;
  }

  .legend-section + .legend-section {
    margin-top: 16px;
  }

  .legend-row {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 8px 0;
    font-size: 12px;
    color: #374151;
  }

  .legend-node {
    width: 28px;
    height: 14px;
    border-radius: 4px;
    border: 1.5px solid;
    flex: 0 0 auto;
  }

  .legend-blue {
    background: #dbeafe;
    border-color: #2563eb;
  }

  .legend-green {
    background: #dcfce7;
    border-color: #16a34a;
  }

  .legend-orange {
    background: #fef3c7;
    border-color: #d97706;
  }

  .legend-purple {
    background: #ede9fe;
    border-color: #7c3aed;
  }

  .legend-red {
    background: #fee2e2;
    border-color: #dc2626;
  }

  .legend-line {
    width: 34px;
    height: 0;
    border-top: 2px solid;
    position: relative;
    flex: 0 0 auto;
  }

  .legend-line.dashed {
    border-top-style: dashed;
  }

  .legend-line.red {
    border-color: #dc2626;
  }

  .legend-line.green {
    border-color: #16a34a;
  }

  .legend-line.black {
    border-color: #111827;
  }

  .path-summary-item {
    margin-bottom: 14px;
  }

  .path-summary-item:last-child {
    margin-bottom: 0;
  }

  .path-summary-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
  }

  .path-summary-label.outbound {
    color: #dc2626;
  }

  .path-summary-label.inbound {
    color: #16a34a;
  }

  .path-summary-path {
    font-size: 12px;
    line-height: 1.6;
    color: #374151;
    word-break: break-word;
  }

  .node-detail {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 7px 10px;
    font-size: 12px;
  }

  .node-detail-label {
    color: #6b7280;
  }

  .node-detail-value {
    color: #111827;
    font-weight: 600;
    word-break: break-word;
  }

  .origin-badge {
    display: inline-block;
    padding: 3px 7px;
    border-radius: 5px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 700;
  }

  .graph-status {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
  }

  .graph-status-title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 5px;
  }

  .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16a34a;
    display: inline-block;
  }

  .graph-status-text {
    font-size: 11px;
    color: #166534;
  }

  .tools-used {
    margin-top: 10px;
    font-size: 11px;
    color: #6b7280;
  }

  .tool-badge {
    display: inline-block;
    margin: 5px 4px 0 0;
    padding: 3px 6px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #d1d5db;
    color: #374151;
    font-size: 10px;
  }

  .graph-help {
    margin-top: 16px;
    padding: 16px 18px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .graph-help h4 {
    margin: 0 0 9px;
    font-size: 13px;
    color: #0369a1;
  }

  .graph-help p {
    margin: 5px 0;
    font-size: 11px;
    line-height: 1.5;
    color: #374151;
  }

  .help-blue { color: #2563eb; font-weight: 700; }
  .help-green { color: #16a34a; font-weight: 700; }
  .help-orange { color: #d97706; font-weight: 700; }
  .help-purple { color: #7c3aed; font-weight: 700; }
  .help-red { color: #dc2626; font-weight: 700; }

  @media (max-width: 950px) {
    .bgp-graph-layout {
      grid-template-columns: 1fr;
    }

    .bgp-sidebar {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .graph-help {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 600px) {
    .bgp-sidebar {
      grid-template-columns: 1fr;
    }
  }


  .diagnostic-output {
    width: 100%;
    overflow-x: auto;
  }

  .diagnostic-output pre {
    margin: 0;
    padding: 18px;
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 8px;
    font-family:
      ui-monospace,
      SFMono-Regular,
      Menlo,
      Monaco,
      Consolas,
      "Liberation Mono",
      monospace;
    font-size: 13px;
    line-height: 1.55;
    white-space: pre;
    overflow-x: auto;
  }

  .network-info {
    display: grid;
    gap: 8px;
    color: #475569;
    font-size: 14px;
  }

  .network-info div {
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .network-info strong {
    color: #1e293b;
    font-weight: 600;
  }

  .network-info a {
    color: #0284c7;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
  }

  .network-info a:hover {
    text-decoration: underline;
  }

  /* ========================================================
         * Network Information
         * ======================================================== */
  .network-panel {
    padding: 22px 24px 20px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(to bottom,
        #ffffff,
        #f8fafc);
  }

  .network-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }

  .network-header .section-title {
    margin: 0;
    color: #0891b2;
    font-size: 18px;
    font-weight: 700;
  }

  .network-header .section-subtitle {
    margin-top: 3px;
    color: #64748b;
    font-size: 12px;
  }

  .network-grid {
    display: grid;
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    gap: 10px 28px;
  }

  .network-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    min-width: 0;
    font-size: 14px;
    line-height: 1.5;
  }

  .network-label {
    color: #64748b;
    white-space: nowrap;
  }

  .network-item strong {
    color: #0f172a;
    font-weight: 600;
    word-break: break-all;
  }

  .test-files {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .test-files a {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border: 1px solid #bae6fd;
    border-radius: 5px;
    background: #f0f9ff;
    color: #0284c7;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    transition:
      background .15s ease,
      border-color .15s ease,
      color .15s ease;
  }

  .test-files a:hover {
    background: #e0f2fe;
    border-color: #7dd3fc;
    color: #0369a1;
    text-decoration: none;
  }

  .network-your-ip a {
    color: #0891b2;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: color .15s ease;
  }

  .network-your-ip a:hover {
    color: #0e7490;
    text-decoration: underline;
  }

  /* ========================================================
         * Looking Glass form
         * ======================================================== */
  #lookupForm {
    padding: 22px 24px 24px;
  }

  #lookupForm .form-grid {
    gap: 16px 18px;
  }

  #lookupForm .field label {
    display: block;
    margin-bottom: 7px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 600;
  }

  #lookupForm input,
  #lookupForm select {
    min-height: 42px;
  }

  /* ========================================================
         * CAPTCHA / actions
         * ======================================================== */
  #lookupForm .actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
  }

  #captchaBox {
    display: inline-flex !important;
    align-items: center;
    gap: 9px !important;
    margin-left: 0 !important;
  }

  #captchaQuestion {
    color: #0f172a;
    font-weight: 700 !important;
    white-space: nowrap;
  }

  #captcha {
    width: 92px !important;
    min-width: 92px !important;
    min-height: 42px;
  }

  /* ========================================================
         * Responsive
         * ======================================================== */
  @media (max-width: 720px) {
    .network-panel {
      padding: 18px;
    }

    .network-grid {
      grid-template-columns: 1fr;
      gap: 8px;
    }

    #lookupForm {
      padding: 18px;
    }

    .network-item {
      font-size: 13px;
    }
  }

  /* ========================================================
         * Looking Glass compact UI refinement
         * ======================================================== */
  .network-panel {
    padding: 20px 24px 18px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
  }

  .network-header {
    margin-bottom: 12px;
  }

  .network-header .section-title {
    font-size: 17px;
    line-height: 1.3;
  }

  .network-header .section-subtitle {
    margin-top: 2px;
    font-size: 11px;
    color: #64748b;
  }

  .network-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 50px;
    row-gap: 7px;
  }

  .network-item {
    min-height: 22px;
    display: flex;
    align-items: baseline;
    gap: 7px;
    font-size: 13px;
    line-height: 1.4;
  }

  .network-label {
    color: #64748b;
    white-space: nowrap;
  }

  .network-item strong {
    color: #0f172a;
    font-weight: 600;
    word-break: break-all;
  }

  .network-your-ip a {
    color: #0284c7;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
  }

  .network-your-ip a:hover {
    color: #0369a1;
    text-decoration: underline;
  }

  /* Form becomes tighter and cleaner */
  #lookupForm {
    padding: 20px 24px 21px;
  }

  #lookupForm .form-grid {
    gap: 14px 18px;
  }

  #lookupForm .field label {
    margin-bottom: 6px;
    font-size: 12px;
  }

  #lookupForm input,
  #lookupForm select {
    min-height: 41px;
  }

  #lookupForm .actions {
    margin-top: 15px;
    gap: 9px;
  }

  #captchaBox {
    gap: 8px !important;
  }

  #captchaQuestion {
    font-size: 14px;
  }

  #captcha {
    width: 92px !important;
    min-width: 92px !important;
    min-height: 41px;
  }

  /* Keep the main LG card visually compact */
  .card {
    overflow: hidden;
  }

  /* Mobile */
  @media (max-width: 720px) {
    .network-panel {
      padding: 17px 18px 16px;
    }

    .network-grid {
      grid-template-columns: 1fr;
      row-gap: 6px;
    }

    #lookupForm {
      padding: 18px;
    }

    #lookupForm .form-grid {
      gap: 13px;
    }
  }

  /* ========================================================
   * Test Files position fix
   * ======================================================== */

  @media (min-width: 721px) {
    .network-grid .network-item:last-child {
      grid-column: 2;
      grid-row: 3;
    }
  }

  .test-files {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .test-files a {
    display: inline-block;
    padding: 4px 9px;
    border: 1px solid #bae6fd;
    border-radius: 5px;
    background: #f0f9ff;
    color: #0284c7;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
  }

  .test-files a:hover {
    background: #e0f2fe;
    text-decoration: underline;
  }

  /* ========================================================
   * NETWORK INFORMATION FINAL LAYOUT
   * ======================================================== */

  @media (min-width: 721px) {

    /* Server Location -> kiri atas */
    .network-grid .network-item:nth-child(1) {
      grid-column: 1;
      grid-row: 1;
    }

    /* Looking Glass IPv4 -> kiri bawah */
    .network-grid .network-item:nth-child(2) {
      grid-column: 1;
      grid-row: 3;
    }

    /* Looking Glass IPv6 -> kiri tengah */
    .network-grid .network-item:nth-child(3) {
      grid-column: 1;
      grid-row: 2;
    }

    /* Your IP Address -> kanan atas */
    .network-grid .network-item:nth-child(4) {
      grid-column: 2;
      grid-row: 1;
    }

    /* Test Files -> kanan tengah */
    .network-grid .network-item:nth-child(5) {
      grid-column: 2;
      grid-row: 2;
    }

  }

  /* Test Files */
  .test-files {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .test-files a {
    display: inline-block;
    padding: 4px 9px;
    border: 1px solid #bae6fd;
    border-radius: 5px;
    background: #f0f9ff;
    color: #0284c7;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
  }

  .test-files a:hover {
    background: #e0f2fe;
    text-decoration: underline;
  }

  /* Mobile tetap 1 kolom */
  @media (max-width: 720px) {

    .network-grid .network-item:nth-child(1),
    .network-grid .network-item:nth-child(2),
    .network-grid .network-item:nth-child(3),
    .network-grid .network-item:nth-child(4),
    .network-grid .network-item:nth-child(5) {
      grid-column: auto;
      grid-row: auto;
    }

  }

  /* ========================================================
         * Looking Glass Footer
         * ======================================================== */
  .lg-footer {
    max-width: 1160px;
    margin: 28px auto 0;
    padding: 18px 4px 24px;
    color: #64748b;
    font-size: 12px;
  }

  .lg-footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
  }

  .lg-footer-title {
    color: #334155;
    font-weight: 600;
    margin-right: 4px;
  }

  .lg-footer-links a {
    color: #0284c7;
    text-decoration: none;
    font-weight: 500;
  }

  .lg-footer-links a:hover {
    color: #0369a1;
    text-decoration: underline;
  }

  .lg-footer-links .separator {
    color: #cbd5e1;
  }

  .lg-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 12px;
    line-height: 1.5;
  }

  .lg-footer-bottom span:first-child {
    color: #334155;
    font-weight: 600;
  }

  @media (max-width: 720px) {
    .lg-footer {
      margin-top: 22px;
      padding: 16px 2px 20px;
    }

    .lg-footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
    }
  }

  .footer {
    margin-top: 42px;
    padding: 0 2px 28px;
    color: #64748b;
    font-size: 13px;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-bottom: 14px;
    border-bottom: 1px solid #dbe3ea;
  }

  .footer-links a {
    color: #0284c7;
    text-decoration: none;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }

  .footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 20px;
    padding-top: 14px;
  }

  .footer-main a {
    color: #0284c7;
    text-decoration: none;
  }

  .footer-left {
    color: #16324f;
  }

  .footer-center {
    text-align: center;
  }

  .footer-right {
    text-align: right;
  }

  .footer-contact {
    margin-top: 10px;
    font-size: 12px;
  }

  .footer-contact a {
    color: #0284c7;
    text-decoration: none;
  }

  .footer-contact a:hover {
    text-decoration: underline;
  }

  @media (max-width: 700px) {
    .footer-main {
      grid-template-columns: 1fr;
      gap: 8px;
    }

    .footer-center,
    .footer-right {
      text-align: left;
    }
  }

  /* --------------------------------------------------------
         * Footer alignment
         * -------------------------------------------------------- */
  footer.footer {
    width: calc(100% - 40px);
    max-width: 1160px;
    margin: 42px auto 28px;
    padding: 0;
    box-sizing: border-box;
    color: #64748b;
    font-size: 13px;
  }

  footer.footer .footer-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 0 2px 14px;
    border-bottom: 1px solid #dbe3ea;
    box-sizing: border-box;
  }

  footer.footer .footer-links a {
    color: #0284c7;
    text-decoration: none;
    white-space: nowrap;
  }

  footer.footer .footer-links a:hover {
    text-decoration: underline;
  }

  footer.footer .footer-main {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 20px;
    padding: 14px 2px 0;
    box-sizing: border-box;
  }

  footer.footer .footer-left {
    text-align: left;
    color: #16324f;
  }

  footer.footer .footer-center {
    text-align: center;
  }

  footer.footer .footer-right {
    text-align: right;
    white-space: nowrap;
  }

  footer.footer .footer-contact {
    margin-top: 10px;
    padding: 0 2px;
    font-size: 12px;
    text-align: left;
  }

  footer.footer .footer-contact a {
    color: #0284c7;
    text-decoration: none;
  }

  footer.footer .footer-contact a:hover {
    text-decoration: underline;
  }

  @media (max-width: 700px) {
    footer.footer {
      width: calc(100% - 24px);
      margin-top: 30px;
    }

    footer.footer .footer-main {
      grid-template-columns: 1fr;
      gap: 8px;
    }

    footer.footer .footer-center,
    footer.footer .footer-right {
      text-align: left;
      white-space: normal;
    }
  }
