
.eosh-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
}

.eosh-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.eosh-dialog {
  position: relative;
  width: min(1150px, 94vw);
  margin: 4vh auto;
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  max-height: 92vh;
  overflow: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.eosh-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 26px;
  line-height: 1;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 10px;
}

.eosh-close:hover {
  background: rgba(0, 0, 0, 0.06);
}

.eosh-h1 {
  font-size: 34px;
  font-weight: 500;
  margin: 0 0 18px;
}

.eosh-sub {
  font-size: 14px;
  opacity: 0.75;
  margin: 0 0 14px;
}

.eosh-topbar {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.eosh-back {
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #fff;
  padding: 7px 12px;
  border-radius: 10px;
  cursor: pointer;
}

.eosh-back:hover {
  background: rgba(0, 0, 0, 0.04);
}

.eosh-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

@media (max-width: 980px) {
  .eosh-grid {
    grid-template-columns: 1fr;
  }
}

.eosh-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.eosh-table thead th {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.7;
  padding: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
  white-space: nowrap;
}

.eosh-table td {
  padding: 16px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  vertical-align: top;
  font-size: 14px;
}

.eosh-table tr:last-child td {
  border-bottom: 0;
}

.eosh-table td:last-child,
.eosh-table th:last-child {
  text-align: right;
}

.eosh-a {
  color: inherit;
  text-decoration: underline;
}

.eosh-badge {
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.16);
  padding: 7px 10px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0.85;
  margin-top: 10px;
}

.eosh-totals {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 10px;
  column-gap: 16px;
  font-size: 14px;
}

.eosh-totals .label {
  opacity: 0.75;
}

.eosh-totals .val {
  text-align: right;
}

.eosh-totals .grand-label {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 500;
}

.eosh-totals .grand-val {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 500;
  text-align: right;
}

.eosh-side {
  min-width: 0;
}

.eosh-side h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 500;
}

.eosh-side .meta {
  font-size: 14px;
  opacity: 0.75;
  margin: 0 0 10px;
}

.eosh-side .addr div,
.eosh-side > div {
  line-height: 1.8;
  font-size: 14px;
}

.eosh-muted {
  font-size: 14px;
  opacity: 0.75;
}

.eosh-loading {
  font-size: 14px;
  opacity: 0.75;
  padding: 20px 0;
}


.eosh-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
}

.eosh-logout{
  font-size:14px;
  text-decoration:underline;
  color:#000;
  opacity:.75;
}

.eosh-logout:hover{
  opacity:1;
}