/* -----------------------------------
   Global bakgrunn og nullstillinger
----------------------------------- */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, #003c65 0%, #ffffff 60%);
  }
  
  /* --------------------------
     Layout: sidebar + chat
  -------------------------- */
  .container {
    display: flex;
    height: 100vh;     /* hele viewport-høyden */
    width: 100%;
  }
  
  .sidebar {
    flex: 0 0 34vw;            /* 34% av vindusbredden */
    display: flex;
    flex-direction: column;
    justify-content: center;   /* sentrerer vertikalt */
    padding-left: 2vw;
  }
  
  #chatContainer {
    flex: 0 0 60vw;            /* 60% av vindusbredden */
    margin-right: 6vw;
  }
  
  /* --------------------------
     Velkomst-boksen
  -------------------------- */
  #welcomeBox {
    background: #fff;
    color: #000;
    border-radius: 24px;
    padding: 1.5rem 2.5rem 1.5rem 1rem;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
  }
  
  /* Gjør lenken klikkbar og stilrent */
  #welcomeBox a {
    color: #003c65;
    text-decoration: underline;
  }
  
  img {
    
        position: fixed;
        top: 1rem;
        left: 1rem;
        width: 80px;
        height: auto;
        z-index: 1000;
      
  }