/**
 * Authentication Required Notice Styling
 * Used for high-risk items requiring authentication verification
 */

.auth-required-box {
  background: #fff7cc;
  border-left: 4px solid #f4c430;
  border-radius: 4px;
  padding: 16px 20px;
  margin: 15px 0;
}

.auth-required-box .auth-title {
  margin: 0 0 12px 0;
  font-size: 1.25em;
  font-weight: bold;
  color: #92400e;
}

.auth-required-box .auth-subtitle {
  margin: 0 0 16px 0;
  font-size: 0.95em;
  color: #78350f;
}

.auth-required-box .auth-values {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.auth-required-box .auth-authentic {
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: 6px;
  padding: 10px 16px;
  flex: 1;
  min-width: 140px;
}

.auth-required-box .auth-authentic .auth-label {
  margin: 0 0 4px 0;
  font-size: 0.85em;
  color: #166534;
  font-weight: 600;
}

.auth-required-box .auth-authentic .auth-value {
  margin: 0;
  font-size: 1.1em;
  font-weight: bold;
  color: #15803d;
}

.auth-required-box .auth-replica {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: 6px;
  padding: 10px 16px;
  flex: 1;
  min-width: 140px;
}

.auth-required-box .auth-replica .auth-label {
  margin: 0 0 4px 0;
  font-size: 0.85em;
  color: #991b1b;
  font-weight: 600;
}

.auth-required-box .auth-replica .auth-value {
  margin: 0;
  font-size: 1.1em;
  font-weight: bold;
  color: #dc2626;
}

.auth-required-box .auth-footer {
  font-size: 0.8em;
  color: #78350f;
  font-style: italic;
  margin: 14px 0 0 0;
}
