.gdws-selected { 
  border: 2px solid #ff5722 !important;
}

.gdws-container {
  min-height: 600px;
  border: 1px dashed #000;
}

.gdws-row {
  min-height: 60px;
  border: 1px dashed #000;
}

.gdws-col {
  min-height: 55px;
  border: 1px dashed #000;
}

.gdws-form {
  position: relative;
  min-height: 120px;
  padding: 20px 10px;
  border: 1px dashed #999;
  display: block;  
}
.gdws-form-label {
  position: absolute;
  left: 8px;
  color: #777;
  font-size: 10px;  
  font-style: italic;
  pointer-events: none;  
}
.gdws-form-label-start {
  top: 2px;
}
.gdws-form-label-end {
  bottom: 2px;
}

.gdws-element {
  border: 1px dashed #000;
  cursor: move;
}
.gdws-element.drop-before {
  border-top: 3px solid blue;
}
.gdws-element.drop-after {
  border-bottom: 3px solid blue;
}
.gdws-element.drop-left {
  border-left: 3px solid blue;
}
.gdws-element.drop-right {
  border-right: 3px solid blue;
}

.gdws-table {
  width: 100%;
  border-collapse: collapse;
}
.gdws-table th, 
.gdws-table td {
  border: 1px dashed #000;
  padding: 4px 6px;
  min-width: 80px;
}

.gdws-input-wrapper {
  display: inline-block;
  padding: 2px;
  border: 1px dashed #999;
  cursor: move;
}
.gdws-input-wrapper.bootstrap-mode {
  display: block;
  width: 100%;
  padding: 2px;
}
.gdws-input-wrapper.bootstrap-mode input {
  display: block;
  width: 100%;
}

.gdws-list {
  border: 2px dashed #000;
  padding: 4px;
  padding-left: 2rem;
  list-style-position: outside;
}

.gdws-line-break-wrapper {
  display: inline;
}
.gdws-line-break {
  display: inline-block;
  margin: 0 2px;
  padding: 0 3px;
  border: 1px dashed #999;
  color: #777;
  background: #f9f9f9;
  font-size: 10px;  
  font-style: italic;
}
.gdws-line-break::after {
  content: "↵ br";
}

.gdws-hr {
  position: relative;
  min-height: 20px;
  margin: 8px 0;
  border: none;  
}
.gdws-hr::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  border-top: 1px solid #000;  
}
.gdws-hr::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px dashed #999;
  pointer-events: none;
}

.gdws-div-placeholder {
  background: repeating-linear-gradient(45deg,#f0f0f0,#f0f0f0 10px,#e0e0e0 10px,#e0e0e0 20px);
}