.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.modal-backdrop.is-hidden {
  display: none;
}

.modal {
  background-color: #1e2028;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px;
  max-width: 480px;
  width: calc(100% - 32px);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 2px 6px rgba(0, 0, 0, 0.25);
  color: #eee;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.modal-title {
  font-size: 1.1em;
  font-weight: 700;
  margin: 0;
}

.modal-close {
  padding: 2px 10px;
  font-size: 1.2em;
  line-height: 1;
}

.modal-body {
  font-size: 0.9em;
}

.info-connection {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
  margin-top: 10px;
}
.info-connection:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.info-connection h3 {
  font-size: 0.95em;
  margin: 0 0 6px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 0;
}

.info-row .info-row-label {
  color: rgba(255, 255, 255, 0.6);
}
