    :root {
      --primary: #FF6C2C;
      --success: #10b981;
      --warning: #f59e0b;
      --danger: #ef4444;
      --gray: #6b7280;
    }
    body {
      font-family: system-ui, -apple-system, sans-serif;
      max-width: 1000px;
      margin: 2rem auto;
      padding: 1rem;
      line-height: 1.6;
      color: white;
      background-color: #293A4A ;
      min-height: 100vh;
      background-image: url('/static/images/background-image.webp');
      background: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7)), 
          url('/static/images/background-image.webp');
      background-size: cover;
      background-attachment: fixed;
    }
    .nav {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
    }
    .nav ul {
        display: flex;
        flex-direction: row;
        list-style: none;
    }
    .nav ul li {
        padding: 0 10px;
    }
    .nav ul li a {
        color: white !important;;
    }
    a {
      color: white;
    }
    h1 { 
      color: var(--primary); 
      text-align: center;
      margin: 0;
    }
    .form-group { margin: 1rem 0; }
    label { display: block; margin-bottom: .5rem; font-weight: 600; }
    input[type="url"] {
      width: 100%;
      padding: .75rem;
      border: 1px solid white;
      border-radius: .5rem;
      font-size: 1rem;
      box-sizing: border-box;
    }
    button {
      background: var(--primary);
      color: white;
      padding: .75rem 1.5rem;
      border: none;
      border-radius: .5rem;
      font-size: 1rem;
      cursor: pointer;
      margin-top: 1rem;
    }

    .results { margin-top: 2rem; }
    .section {
      background-color: #303030;
      border: 1px solid #e5e7eb;
      border-radius: .75rem;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .section h3 {
      margin: 0 0 1rem;
      font-size: 1.25rem;
      display: flex;
      align-items: center;
      gap: .5rem;
    }
    .count {
      background: var(--primary);
      color: white;
      padding: .25rem .5rem;
      border-radius: .375rem;
      font-size: .875rem;
      font-weight: 600;
    }
    ul { margin: 0; padding-left: 1.5rem; }
    li { margin: .25rem 0; font-family: monospace; font-size: .95rem; }
    .flash {
      padding: .75rem 1rem;
      border-radius: .5rem;
      margin-bottom: 1rem;
      font-weight: 500;
    }
    .flash.error { background: #fee2e2; color: var(--danger); border: 1px solid #fecaca; }
    .flash.warning { background: #fef3c7; color: var(--warning); border: 1px solid #fde68a; }
    .icon { font-size: 1.1em; }
    .image-cont img {
        width: 150px;
    }
    .footer-lower {
      display: flex;
      flex-direction: row;
      justify-content: space-around;
    }

    .btn {
      padding: 10px 10px;
      color: white;
      background-color: var(--primary);
      border-radius: 8px;
      text-decoration: none;
    }
  


    .loader {
        transform: rotateZ(45deg);
        perspective: 1000px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        color: #fff;
        display: none;
      }
        .loader:before,
        .loader:after {
          content: '';
          display: block;
          position: absolute;
          top: 0;
          left: 0;
          width: inherit;
          height: inherit;
          border-radius: 50%;
          transform: rotateX(70deg);
          animation: 1s spin linear infinite;
        }
        .loader:after {
          color: #FF3D00;
          transform: rotateY(70deg);
          animation-delay: .4s;
        }

      @keyframes rotate {
        0% {
          transform: translate(-50%, -50%) rotateZ(0deg);
        }
        100% {
          transform: translate(-50%, -50%) rotateZ(360deg);
        }
      }

      @keyframes rotateccw {
        0% {
          transform: translate(-50%, -50%) rotate(0deg);
        }
        100% {
          transform: translate(-50%, -50%) rotate(-360deg);
        }
      }

      @keyframes spin {
        0%,
        100% {
          box-shadow: .2em 0px 0 0px currentcolor;
        }
        12% {
          box-shadow: .2em .2em 0 0 currentcolor;
        }
        25% {
          box-shadow: 0 .2em 0 0px currentcolor;
        }
        37% {
          box-shadow: -.2em .2em 0 0 currentcolor;
        }
        50% {
          box-shadow: -.2em 0 0 0 currentcolor;
        }
        62% {
          box-shadow: -.2em -.2em 0 0 currentcolor;
        }
        75% {
          box-shadow: 0px -.2em 0 0 currentcolor;
        }
        87% {
          box-shadow: .2em -.2em 0 0 currentcolor;
        }
      }
   
/** cookie banner styking **/
.cc-nb-buttons-container button {
  background-color: var(--primary) !important;
}