/* Raju  */
.cursor-pointer {
  cursor: pointer;
}
.text-center {
  text-align: center;
}

.dtbl_front_shortcode input {
  cursor: pointer;
  text-align: center;
  border: none;
  outline: none;
  background-color: rgb(30, 140, 190);
  color: rgb(255, 255, 255);
  padding: 4px 10px;
  border-radius: 3px;
}
.dtbl_front_shortcode {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

.dtbl_front_shortcode .htooltip {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.dtbl_front_shortcode .htooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.dtbl_front_shortcode:hover .htooltip {
  visibility: visible;
  opacity: 1;
}

/* gutenberg tabs  */
.dtbl-tab-panel .components-tab-panel__tabs {
  display: flex;
  justify-content: space-around;
}
.dtbl-tab-panel button[aria-selected="false"] {
  font-weight: normal;
}
.dtbl-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
}
.dtbl-wrapper table td,
.dtbl-wrapper table th {
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 17px;
}

/* preview  */
.dtbl-preview .content {
  width: 1100px;
  position: fixed;
  background: rgb(255, 255, 255);
  top: 70px;
  z-index: 99;
  max-width: 90%;
  padding: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.dtbl-preview .overlay {
  width: 100%;
  height: 100%;
  background: #333333c9;
  position: fixed;
  left: 0;
  top: 0;
}
.dtbl-preview .close {
  position: absolute;
  top: 0px;
  right: 10px;
  font-size: 25px;
  cursor: pointer;
}
