    /* Styl zùstává stejný  mùe ho zkrátit dle potøeby */
    .chat-toggle {
      position: fixed;
      bottom: 20px;
      right: 20px;
    /*  background: #0084FF;*/
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      cursor: pointer;
     /* box-shadow: 0 5px 15px rgba(0,0,0,0.3);*/
      z-index: 1000;
  background-image: url('https://www.ubpro.eu/B/uploads/--l--/chat.png'); /* nahraďte správnou cestou */
   /*background: linear-gradient(135deg, #fceabb, #f8b500);*/
  background-size: cover;
 background-position: center;
  background-repeat: no-repeat;
 
    }

    .chat-box {
      position: fixed;
      bottom: 90px;
      right: 20px;
      width: 300px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      overflow: hidden;
      display: none;
      flex-direction: column;
      z-index: 1000;
    }

    .chat-header {
  background: linear-gradient(135deg, #fceabb, #f8b500);
    /*  background: #ff6a00;*/
      color: white;
      padding: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      color:black;
    }

    .chat-body {
      padding: 10px;
      font-size: 14px;
    }

    .chat-footer {
      padding: 10px;
     /* background: #f5f5f5;*/
     
    }

    .chat-footer form {
      display: flex;
      flex-direction: column;
    }

    .chat-footer input, .chat-footer button {
      margin-top: 5px;
      padding: 8px;
      border-radius: 5px;
    }

    .chat-footer input {
      /*border: 1px solid #ccc;*/
    }

    .chat-footer button {
        background: linear-gradient(135deg, #fceabb, #f8b500);
     /* background: #0084FF;*/
      color: white;
      border: none;
      cursor: pointer;
    }
