html,
body {
  min-width: 0 !important;
}

body {
  font-family: sans-serif;
  background: #ddd;
  color: #666;
  height: 100vh; 
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
}

#title{
  width: 100%;
  text-align: center;
}

#video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#overlay {
  /* display: none; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 70px);
  /* border: 2px #f7ff88 solid; */
  z-index: 99;
}

#status{
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
#status2{
  position: absolute;
  top:40px;
  left:15px;
  font-size: 18px;
  font-weight: bold;
  color: #666;
  z-index: 5;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90vw;
  max-width: 1200px;
  margin: auto;
  background-color: #fff;      
}

#meeting-container {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  border: 3px #333 solid;
  border-radius: 12px;
  box-shadow: 2px 5px 5px #b8b8b8;
}

arctos-widget {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  /* border: red 1px solid; */
}

#code-container {
  padding: 20px;
  width: 0%;
  height: 70vh;
  overflow: auto;
}

.article{
  margin:40px 0;
  color: #888;
  line-height: 30px;
}

.btnGroup{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.btnGroup>h1,
.btnGroup>button {
  text-align: center;
}

.btnGroup button {
  margin: 20px 5px;
  background-color: #2D8CFF;
  color: #ffffff;
  text-decoration: none;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 40px;
  padding-right: 40px;
  display: inline-block;
  border-radius: 20px;
  cursor: pointer;
  border: none;
  outline: none;
}

.btnGroup button:hover {
  background-color: #2681F2;
}

.form-select{
  display: inline-block;
  height: 35px;
  color: #ffffff;
  background-color: #2D8CFF;
  text-decoration: none;
  margin: 0 3px;
  padding: 10px 40px;
  border-radius: 20px;
  cursor: pointer;
  border: none;
  outline: none;
}

#toolbar {
  position: absolute;
  display: none;
  justify-content: center;
  align-items: center;
  height: 60px;
  bottom: 75px;
  padding: 0 20px;
  border-radius: 6px;
  background-color: #f1eeea;
  text-align: center;
  transition: all 0.5s;
  z-index: 1000;
}
#toolbar .action {
  display: inline-flex;
  color: #556583;
  text-decoration: none;
  cursor: pointer;
  padding: 10px;
  transition: all 0.3s;
}
#toolbar .action.save:hover,
#toolbar .action.clearAll:hover,
#toolbar .action.cutPic:hover,
#toolbar .action.prev:hover,
#toolbar .action.next:hover,
#toolbar .action.pen:hover,
#toolbar .action.eraser:hover,
#toolbar .action.color button:hover {
  transform: scale(1.2);
}
#toolbar .action i {
  font-size: 25px;
  line-height: 30px;
}
#toolbar .action.size {
  display: flex;
  align-items: center;
}
#toolbar .action.pen .p1 {
  display: none;
}
#toolbar .action.pen .p2 {
  display: block;

}
#toolbar .action.pen.bold .p1{
  display: block;

}
#toolbar .action.pen.bold .p2{
  display: none;

}
#toolbar .action.size input[type=text] {
  width: 74px;
  height: 35px;
  margin-right: 8px;
  border: none;
  border-radius: 40px;
  background-color: #e8e8e8;
  text-align: center;
  font-size: 22px;
  outline: none;
}
#toolbar .action.color {
  display: inline-flex;
}
#toolbar .action.color .colorGroup {
  display: flex;
  align-items: center;
}
#toolbar .action.color .colorGroup button {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin: 0 5px;
  padding: 0;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

#toolbar .closeBtn {
  position: absolute;
  top: -10px;
  right: -10px;
  width:25px;
  aspect-ratio: 1/1;
  line-height: 25px;
  text-align: center;
  color: #888;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
}