/* /whois/whois.css — стили whois в стиле dig (glass) */

.whois-page { padding-top: 16px; }

.whois-card { margin-bottom: 18px; }

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

.whois-title{
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: .2px;
}

.whois-subtitle{
  margin-top: 6px;
  opacity: .9;
  font-size: 14px;
}

.whois-subtitle code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
  opacity: .95;
}

.whois-form{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.whois-field--full{ grid-column: 1 / -1; }

.whois-label{
  display:block;
  font-weight: 600;
  margin-bottom: 8px;
  opacity: .95;
}

.whois-input{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.96);
  padding: 12px 14px;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}

.whois-input:focus{
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.09);
}

.whois-hint{
  margin-top: 8px;
  font-size: 12px;
  opacity: .85;
}

.whois-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
}

.whois-run,
.whois-btn{
  min-width: 160px;
}

.whois-status{
  margin-left: auto;
  font-size: 13px;
  opacity: .95;
}

.whois-h2{
  margin: 0 0 10px 0;
  font-size: 18px;
}

.whois-output{
  margin: 0;
  max-height: 520px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;

  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  padding: 14px;
}

@media (max-width: 720px){
  .whois-title{ font-size: 30px; }
  .whois-run, .whois-btn{ min-width: 140px; }
  .whois-status{ width: 100%; margin-left: 0; }
}

