.tabrecall_app {
    
/* ------------ message section start --------------- */
.msg_container {
    padding-block: 9px;
    background: white;
    border-radius: 8px;
  }

  .msg_header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
  }


  input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background-color: #f5f5f5;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  input[type="text"]:focus {
    border-color: #d0d0d0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  input[type="text"]::placeholder {
    color: #656575;
  }

  .addMoreBtn {
    background: none;
    border: none;
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
  }

  /* ------------ message section end --------------- */
}