@tailwind base;
@tailwind components;
@tailwind utilities;
div.system-button-group {
  text-align: right;
  margin-top: 30px;
}
div.system-button-group a.btn:not(:last-child),
div.system-button-group button.btn:not(:last-child),
div.system-button-group input[type=submit].btn:not(:last-child) {
  margin-right: 0.5rem;
}

table.table-info {
  background: transparent;
}
table.table-info tr th {
  border: 0;
  font-weight: 600;
  width: 175px;
  padding: 0.75rem 0.75rem 0.75rem 0;
  vertical-align: top;
}
table.table-info tr td {
  border: 0;
  padding: 0.75rem 0 0.75rem 0.75rem;
  vertical-align: top;
}

.js-copy-memory .tooltip-text {
  visibility: hidden;
  width: 200px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 25%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}
.js-copy-memory .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}
.js-copy-memory:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.js-copy-memory-content {
  opacity: 0;
  width: 0;
  height: 0;
}
