/*
-----------------------------------------------------------
	PbsChat Style Sheet
-----------------------------------------------------------
*/
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300&display=swap');
/* スクロールバーなどの設定を変えたい時はここに書きます */
html {
height:100%;
}
body {
height:100%;
margin:0;

}

/* 全体のフォントサイズを調整したい時はここに書きます */
body,td,font {
font-family: 'Kiwi Maru', serif;
}

/* チャットルームのタイトル（上でフォントサイズを変えた時はここも指定してください） */
.ptitle {

}

/* テキストを入力するフォーム */
.textform {
border: solid 1px rgb(5,10,0);
background-color:transparent;
margin-top:0.2em;
font-size: 1.1em;
line-height: 1.4em;
}

/* セレクトフォーム */
.selectform {

}

/* チェックボックス・ラジオボタン */
.checkform {
border: double 2px rgb(5,10,0);
background-color:transparent;
}

/* 送信ボタン */
.buttonform {

}

#box {
display:flex;
width:98%;
margin:1em 0;
}

#name {
z-index:1;
width:4em;
min-width:4em;
display:inline-block;
text-align:center;
text-shadow:1px 1px 4px rgba(5,10,0,0.4);
}

#script {
background_color:white;
border-radius: 10px;
border:dashed 1px black;
padding:0.2em 0.5em 0.2em 0.4em;
display:inline-block;
width:auto;
height:auto;
min-height:1.1em;
}

#script::before{
z-index:0;
  content: '';
  position: relative;
display: inline-block;
  width: 0;
  height: 0;
  left: -0.7em;
top:-2px;
  border-right:0.5em solid #FFFCF7;
  border-top: 0.5em solid transparent;
  border-bottom: 0.5em solid transparent;
}
