﻿/* =====================================================================
   GED-PRO 1.0 — A03
   Fiche documentaire : affichage de l'UID public
   ===================================================================== */

.a03-public-uid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
  padding: 11px 12px;
  border: 1px solid #d8e2f0;
  border-radius: 11px;
  background: #f8fbff;
}

.a03-public-uid-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.a03-public-uid-copy > span {
  color: #66758c;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.a03-public-uid-copy code {
  color: #172b4d;
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
  font-weight: 700;
  overflow-wrap: anywhere;
  user-select: all;
}

.a03-public-uid-copy small {
  color: #73829a;
  font-size: 8.5px;
}

.a03-public-uid-button {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #b9cbea;
  border-radius: 8px;
  background: #fff;
  color: #1555c5;
  font-size: 9.5px;
  font-weight: 800;
  cursor: pointer;
}

.a03-public-uid-button:hover {
  background: #eef5ff;
  border-color: #8eafe2;
}

.a03-public-uid-button.is-copied {
  color: #08783e;
  border-color: #a7d7bd;
  background: #effaf4;
}

@media (max-width: 680px) {
  .a03-public-uid {
    align-items: stretch;
    flex-direction: column;
  }

  .a03-public-uid-button {
    width: 100%;
  }
}
