/* Minecraft UUID Lookup - Simple Output Styling */

/* Copy flash on output boxes */
.uuid-copied {
  border-color: #16a34a !important;
  background: #f0fdf4 !important;
  transition: none !important;
}

/* Error shown inside output box */
.uuid-error-output {
  color: #dc2626 !important;
  font-size: 14px !important;
  font-weight: 600;
  cursor: default !important;
  border-color: #fca5a5 !important;
  background: #fef2f2 !important;
}

.uuid-error-output:hover {
  border-color: #fca5a5 !important;
  background: #fef2f2 !important;
}

.uuid-error-output::after {
  display: none !important;
}

/* Undashed UUID shown as small secondary text */
.uuid-undashed-hint {
  font-family: Consolas, 'Roboto Mono', 'SF Mono', Monaco, 'Cascadia Code', 'Liberation Mono', 'Courier New', monospace;
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  cursor: pointer;
  padding: 2px 0;
  word-break: break-all;
  transition: color 0.2s ease;
}

.uuid-undashed-hint::before {
  content: "Undashed: ";
  font-family: inherit;
}

.uuid-undashed-hint:hover {
  color: #3984a7;
}

.uuid-undashed-hint.uuid-copied {
  color: #16a34a !important;
  background: none !important;
  border-color: transparent !important;
}

/* Cross-link to skin stealer */
.uuid-cross-link {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #6b7280;
}

.uuid-cross-link a {
  color: #3984a7;
  text-decoration: none;
  font-weight: 500;
}

.uuid-cross-link a:hover {
  text-decoration: underline;
}

/* Copy button inside output group */
.output-with-copy {
  position: relative;
}

.output-with-copy .output-display {
  padding-right: 44px;
}

.output-with-copy .copy-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

.output-with-copy .copy-btn:hover {
  background-color: #e5e7eb;
  color: #374151;
}

.output-with-copy .copy-btn.uuid-copied {
  color: #16a34a;
  background: none !important;
}

.output-with-copy .copy-btn .copy-icon {
  width: 16px;
  height: 16px;
}
