@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
  font-family: 'Noto Sans', sans-serif;
  margin: 0;
  padding: 0;
}

.editor-area{
  display: grid;
  grid-template-columns: auto 350px;
  border: 1px solid #eee;
}

@media(max-width:  768px){
  .editor-area{
    display: flex;
    flex-direction: column;
  }
}

.editor-area > div.editor{
  padding: 15px;
}

.editor-area > div:last-child{
  border-left: 1px solid #eee;
}

.editor input,
.editor textarea{
  width: 100%;
  box-sizing: border-box;
  padding: 10px 5px;
  border: 1px solid #e1e1e1;
}

.editor .section:not(:last-child){
  padding-bottom: 20px;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 20px;
}

.editor .section h4{
  border-bottom: 1px solid #333;
  margin-bottom: 0;
  padding-bottom: 5px;
  line-height: 1;
}

.editor .elements{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.editor .elements .element{
  display: flex;
  justify-content: space-between;
  border: 1px solid #e1e1e1;
  background-color: #eee;
  padding: 5px
}
.editor .elements .element [data-delete]{
  color: rgb(216, 18, 18);
}
.editor .elements .element [data-delete]:hover{
  cursor: pointer;
}
.editor .section button{
  background-color: #544ad1;
  color: #fff;
  border: none;
  margin-bottom: 5px;
  padding: 5px;
  font-size: 16px;
  cursor: pointer;
}

.editor-area #container img{
  max-width: 100%;
  max-height: 100%;
  pointer-events: none;
}

.editor-area #container {
    position: relative;
    overflow: hidden;
}

.editor-area #container .draggable {
    position: absolute;
    cursor: grab;
    border: 1px solid rgb(44, 44, 44);
    padding: 10px;
    background-color: #000;
    border-radius: 100px;
    color: #fff;
    user-select: none;
    font-size: 18px;
    width: 30px; /* ou o tamanho desejado */
    height: 30px; /* ou o tamanho desejado */
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
