@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {margin: 0; padding: 0;}

html {
	height: 100%;
	
}


:root{
      --bg: #000;          /* page background */
      --band: #fff;        /* horizontal stripe */
      --card: #fff;        /* card background */
      --ink: #111;         /* dark text */
      --ink-inv:#fff;      /* light text */
      --accent:#111;       /* speech bubble fill */
      --border:#fff;       /* speech bubble border */
      --radius: 14px;
    }

    * { box-sizing: border-box; }
    html, body { height: 100%; }
    body{
      margin: 0;
      background: var(--bg);
      color: var(--ink);
      font: 16px/1.5 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    }

    
    .avatar-img{
       width: 100%;
      border: 0px solid black;
    } 


    .avatar{
        z-index: 2;
        background: var(--card);
        border-radius: var(--radius);
        padding: 18px 18px 20px;
        box-shadow: 0 12px 28px rgba(0, 0, 0, .45);
        position: absolute;
        top: 50px; 
        left: 50%;
        transform: translateX(-50%); 
        width: 400px;
    }

    
    /* White horizontal band across the middle */
    .band{
      position: absolute;
      inset: 0;
      top: 50%;
      height: 140px;
      transform: translateY(-50%);
      background: var(--band);
    }
    
    .brand {
        text-align:center;
        font-weight:bold;
    }

    .brand-desc {
         text-align:center;
         font-size: 11px;
        font-weight: normal;
    }
    .txt-box{
        width: 100%;
        height: 100px;
        border-radius: 10px;
        padding: 10px;
    }


    .msg-from-bot {
        font-size: 13px;
        background: #dddddd;
        padding: 16px;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    /* Small screens: keep proportions tidy */
    @media (max-width: 720px){
      .bubble{ top: -96px; }
      .brand{ left: 10px; font-size: 15px; }
      .band{ height: 120px; }

        .avatar{
          z-index: 2;
          background: var(--card);
          border-radius: var(--radius);
          padding: 18px 18px 20px;
          box-shadow: 0 12px 28px rgba(0, 0, 0, .45);
          position: absolute;
          top: 50px; 
          left: 50%;
          transform: translateX(-50%); 
          width: 95%;
      }

    }




.make-mobile{
      display: flex;
    justify-content: center;
    align-items: center;
}

#div-growl{
    visibility: hidden;
    display: none;
    position: absolute;
    top: 8px;
    left: 20%;
    width: 70%;
    background: #333333;
    padding: 9px;
    color: white;
    font-size: 12px;
    border-radius:5px;
}


.template {
    display: none;
    visibility: hidden;
}

.templates {
    display: none;
    visibility: hidden;
}





