/* ==========================================================================
   Kartenrunde — gemeinsames Design (Dark-Casino-Thema)
   ========================================================================== */

:root {
  --bg: #0f1220;
  --surface: #1a1f35;
  --card-bg: #f8f5ec;
  --accent: #7c5cff;
  --accent-2: #ffb84d;
  --text: #e8eaf6;
  --muted: #9aa0c0;
  --danger: #ff5c7a;
  --ok: #3ddc97;
  --line: #2a3152;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  background:
    radial-gradient(1100px 700px at 20% -10%, #1c2244 0%, rgba(15, 18, 32, 0) 60%),
    radial-gradient(900px 600px at 110% 110%, #221a3d 0%, rgba(15, 18, 32, 0) 55%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Ubuntu, 'Helvetica Neue', sans-serif;
  min-height: 100dvh;
  line-height: 1.45;
}

/* Hintergrundbilder (cover) mit dunkler Abdunklung für Lesbarkeit */
body.bg-main, body.bg-lobby, body.bg-game {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body.bg-main {
  background-image:
    linear-gradient(rgba(8, 10, 20, 0.72), rgba(8, 10, 20, 0.72)),
    url('/wizard/assets/BG_main.png');
}
body.bg-lobby {
  background-image:
    linear-gradient(rgba(8, 10, 20, 0.68), rgba(8, 10, 20, 0.68)),
    url('/wizard/assets/BG_lobby.png');
}
body.bg-game {
  background-image:
    linear-gradient(rgba(8, 10, 20, 0.58), rgba(8, 10, 20, 0.58)),
    url('/wizard/assets/BG_game.png');
}

h1, h2, h3 { line-height: 1.2; }
h2 { font-size: 1.15rem; margin-bottom: 10px; }

a { color: var(--accent-2); }

.hidden { display: none !important; }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }
.error { color: var(--danger); font-size: 0.9rem; margin-top: 10px; }

/* --- Buttons & Inputs ----------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #262c4a;
  color: var(--text);
  border: 1px solid #343c66;
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.05s;
  user-select: none;
}
.btn:hover { background: #2e3560; }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.btn.primary {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
  font-weight: 600;
}
.btn.primary:hover { background: #8d70ff; }
.btn.danger { border-color: #6b2b3b; }
.btn.danger:hover { background: #47243a; }

.input {
  width: 100%;
  background: #12162a;
  border: 1px solid #343c66;
  color: var(--text);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}
.input:focus { border-color: var(--accent); }
.input::placeholder { color: #5b6188; }

.label { display: block; margin-bottom: 6px; color: var(--muted); font-size: 0.9rem; }

/* Kleine Bild-Icons in Buttons/Labels (clipboard.png, Farbsymbole, …) */
.btn-icon { width: 18px; height: 18px; object-fit: contain; }
.suit-icon { width: 18px; height: 18px; object-fit: contain; vertical-align: -3px; margin-right: 5px; }
.icon-btn { padding: 7px 9px; }
.icon-btn img { width: 20px; height: 20px; object-fit: contain; display: block; }

/* Logo auf Login-/Hauptseite */
.logo-img {
  display: block;
  max-width: 240px;
  width: 60%;
  height: auto;
  margin: 0 auto 10px;
}
.home-header .logo-img { margin: 0 0 10px; }

/* --- Toasts --------------------------------------------------------------- */

#toasts {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1000;
  pointer-events: none;
}
.toast {
  background: #262c4a;
  border: 1px solid #343c66;
  color: var(--text);
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  font-size: 0.95rem;
  max-width: min(420px, 90vw);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s;
}
.toast.show { opacity: 1; transform: none; }
.toast-error { background: #442238; border-color: var(--danger); }
.toast-ok { background: #1c3b32; border-color: var(--ok); }

/* --- Login ---------------------------------------------------------------- */

.auth-wrap {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 16px;
}
.auth-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px 28px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
}
.auth-emoji { font-size: 2.6rem; margin-bottom: 6px; }
.auth-card h1 { font-size: 1.5rem; margin-bottom: 6px; }
.auth-card p { margin-bottom: 18px; }
.auth-card .input { margin-bottom: 12px; text-align: center; }
.auth-card .btn { width: 100%; }

/* --- Hauptseite ----------------------------------------------------------- */

.container { max-width: 860px; margin: 0 auto; padding: 28px 16px 60px; }

.home-header { margin-bottom: 24px; }
.home-header h1 { font-size: 1.9rem; }
.home-header p { margin-top: 4px; }

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 22px;
}

section > h2 { margin-top: 4px; }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.game-tile {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.game-tile:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.game-tile.disabled { opacity: 0.55; cursor: default; filter: grayscale(0.5); }
.game-tile.disabled:hover { border-color: var(--line); transform: none; box-shadow: none; }
.tile-emoji { font-size: 2rem; margin-bottom: 8px; }
.tile-title { font-weight: 700; font-size: 1.1rem; }
.tile-sub { color: var(--muted); font-size: 0.83rem; margin-top: 3px; }
.badge-soon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #343c66;
  color: var(--muted);
  font-size: 0.68rem;
  padding: 3px 8px;
  border-radius: 999px;
}

.join-row { display: flex; gap: 10px; }
.code-input {
  width: 9ch;
  min-width: 9ch;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 700;
  text-align: center;
}

/* --- Wizard: Lobby -------------------------------------------------------- */

.lobby-card {
  position: relative;
  max-width: 540px;
  margin: 26px auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
}
.lobby-card h1 { font-size: 1.5rem; text-align: center; margin-bottom: 14px; }

.room-code-row { text-align: center; margin-bottom: 18px; }
.room-code-row .label { margin-bottom: 2px; }
.room-code {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  margin-right: -0.35em; /* optischer Ausgleich */
  color: var(--accent-2);
}
.room-code-row .btn { margin-top: 8px; }
.lobby-sound { position: absolute; top: 14px; right: 14px; }

.player-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

#playerList { list-style: none; margin-bottom: 18px; }
.player-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-bottom: 1px solid #232948;
  font-size: 0.98rem;
}
.player-row:last-child { border-bottom: none; }
.player-row .crown { width: 1.3em; text-align: center; }
.player-row .p-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #555e85;
  flex: none;
  display: inline-block;
}
.dot.on { background: var(--ok); box-shadow: 0 0 6px rgba(61, 220, 151, 0.7); }

#specialsBox {
  border: 1px solid #2c3357;
  border-radius: 12px;
  padding: 10px 14px 12px;
  margin-bottom: 16px;
}
#specialsBox legend { color: var(--muted); font-size: 0.85rem; padding: 0 6px; }
#specialsBox label {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 0;
  cursor: pointer;
  font-size: 0.95rem;
}
#specialsBox label.master {
  border-bottom: 1px solid #2c3357;
  padding-bottom: 8px;
  margin-bottom: 6px;
  color: var(--muted);
}
#specialsBox input[type='checkbox'] { accent-color: var(--accent); width: 17px; height: 17px; }
#specialsBox input[type='checkbox']:disabled + span { opacity: 0.8; }

.lobby-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.lobby-actions .btn.primary { flex: 1; }
#lobbyHint { text-align: center; margin-bottom: 10px; }
#startHint { margin-top: 8px; text-align: center; }

/* --- Wizard: Spiel-Ansicht ------------------------------------------------ */

#gameView {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
}

.game-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 0.95rem;
}
#roundInfo { font-weight: 700; white-space: nowrap; }
#trumpInfo { display: flex; align-items: center; gap: 8px; }
.trump-label { font-weight: 600; }
.header-actions { margin-left: auto; display: flex; gap: 8px; }

/* Tisch */
.table { position: relative; flex: 1; min-height: 300px; overflow: hidden; }
.felt {
  position: absolute;
  inset: 5% 2%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 40%, #265c42 0%, #17402c 55%, #0f2a1d 100%);
  border: 5px solid #4a3f22;
  box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.55), 0 12px 34px rgba(0, 0, 0, 0.4);
}
#seats { position: absolute; inset: 0; }

.seat {
  position: absolute;
  transform: translate(-50%, -50%);
  background: rgba(15, 18, 32, 0.88);
  border: 1px solid #343c66;
  border-radius: 12px;
  padding: 5px 10px;
  text-align: center;
  min-width: 86px;
  max-width: 150px;
  z-index: 3;
}
.seat.turn {
  border-color: var(--accent-2);
  box-shadow: 0 0 14px rgba(255, 184, 77, 0.55);
}
.seat.me { border-color: var(--accent); }
.seat.turn.me { border-color: var(--accent-2); }
.seat.off { opacity: 0.55; }
.seat-avatar {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin: 1px auto 2px;
}
.seat-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
}
.seat-name .p-name { overflow: hidden; text-overflow: ellipsis; }
.seat-sub {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-size: 0.74rem;
  color: var(--muted);
  white-space: nowrap;
}
.chip-dealer {
  background: #343c66;
  color: var(--text);
  border-radius: 6px;
  padding: 0 5px;
  font-size: 0.65rem;
}

.played { position: absolute; transform: translate(-50%, -50%); z-index: 2; }
.played.winner .card {
  box-shadow: 0 0 0 3px var(--accent-2), 0 0 20px rgba(255, 184, 77, 0.8);
}

.status-bar {
  text-align: center;
  background: rgba(26, 31, 53, 0.85);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  min-height: 40px;
  font-size: 0.95rem;
}

/* Handfächer */
.hand {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  padding: 12px 8px 16px;
  min-height: 116px;
}
.hand .card { margin-left: -16px; transition: transform 0.12s, box-shadow 0.12s; }
.hand .card:first-child { margin-left: 0; }
.hand.fan .card {
  transform: rotate(calc((var(--i) - (var(--n) - 1) / 2) * 4deg));
  transform-origin: 50% 130%;
}
.card.clickable { cursor: pointer; }
.hand .card.clickable:hover,
.hand .card.clickable:focus-visible {
  transform: translateY(-12px);
  z-index: 6;
}
.card.illegal { filter: brightness(0.42) saturate(0.5); pointer-events: none; }
.card.dim { filter: brightness(0.72); }
.card.selected {
  outline: 3px solid var(--ok);
  transform: translateY(-12px) !important;
  z-index: 6;
}

/* --- Karten --------------------------------------------------------------- */

.card {
  position: relative;
  width: 64px;
  height: 92px;
  flex: none;
  background: var(--card-bg);
  border-radius: 10px;
  color: #23262e;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.45);
  user-select: none;
}
.card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  pointer-events: none;
}
.card .big {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 800;
}
.card .big.emoji { font-size: 1.9rem; }
.card .corner { position: absolute; font-size: 0.72rem; font-weight: 800; line-height: 1; }
.card .corner.tl { top: 5px; left: 6px; }
.card .corner.br { bottom: 5px; right: 6px; transform: rotate(180deg); }
.card .cname {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.52rem;
  font-weight: 600;
  color: #4b5063;
  letter-spacing: 0.02em;
}

.card.card-back {
  background:
    repeating-linear-gradient(45deg, #262d52 0 6px, #1a1f35 6px 12px);
  border: 2px solid #3a4270;
}

/* Kartengrößen */
.card.sm { width: 46px; height: 66px; border-radius: 7px; }
.card.sm img { border-radius: 7px; }
.card.sm .big { font-size: 1.15rem; }
.card.sm .big.emoji { font-size: 1.3rem; }
.card.sm .corner { font-size: 0.58rem; }
.card.sm .cname { display: none; }
.card.xs { width: 33px; height: 47px; border-radius: 5px; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4); }
.card.xs img { border-radius: 5px; }
.card.xs .big { font-size: 0.9rem; }
.card.xs .big.emoji { font-size: 1rem; }
.card.xs .corner, .card.xs .cname { display: none; }

/* Farben (auf hellem Kartengrund) */
.suit-blue { color: #2563eb; }
.suit-red { color: #dc2626; }
.suit-green { color: #16a34a; }
.suit-yellow { color: #c88f04; }
.card .wiz { color: #6d28d9; }
.card .jes { color: #6b7280; }

/* Ansage-Badge (Wolke/Jongleur) + Gestaltenwandler-Badge */
.card.ann-blue { box-shadow: 0 0 0 3px #2563eb, 0 2px 7px rgba(0, 0, 0, 0.45); }
.card.ann-red { box-shadow: 0 0 0 3px #dc2626, 0 2px 7px rgba(0, 0, 0, 0.45); }
.card.ann-green { box-shadow: 0 0 0 3px #16a34a, 0 2px 7px rgba(0, 0, 0, 0.45); }
.card.ann-yellow { box-shadow: 0 0 0 3px #eab308, 0 2px 7px rgba(0, 0, 0, 0.45); }
.ann-badge {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.bg-blue { background: #2563eb; }
.bg-red { background: #dc2626; }
.bg-green { background: #16a34a; }
.bg-yellow { background: #b98a00; }
.as-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* --- Modals & Popover ----------------------------------------------------- */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 15, 0.6);
  display: grid;
  place-items: center;
  padding: 16px;
  overflow: auto;
  z-index: 500;
}
.modal {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  width: 100%;
  max-width: 420px;
  max-height: 88vh;
  overflow: auto;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.6);
}
.modal.at-top { align-self: start; margin-top: 7vh; }
.modal.modal-wide { max-width: 660px; }
.modal h2 { margin-bottom: 12px; }
.modal p { margin-bottom: 12px; }
.modal .row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.modal .row .btn { flex: 1; }
.modal .input { margin-bottom: 12px; }

.num-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}
.num-btn { font-size: 1.1rem; font-weight: 700; padding: 12px 0; }

.suit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.sbtn { color: #fff; font-weight: 700; border-color: transparent; padding: 12px 8px; }
.sbtn-blue { background: #2563eb; }
.sbtn-blue:hover { background: #3b76f0; }
.sbtn-red { background: #dc2626; }
.sbtn-red:hover { background: #e64545; }
.sbtn-green { background: #16a34a; }
.sbtn-green:hover { background: #1fb658; }
.sbtn-yellow { background: #ca8f04; color: #221c04; }
.sbtn-yellow:hover { background: #e0a70f; }

.popover {
  position: fixed;
  bottom: 152px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid #343c66;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: min(440px, calc(100vw - 24px));
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.65);
  z-index: 400;
}
.pop-title { font-weight: 700; text-align: center; }
.pop-row { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.pop-row .btn { flex: 1; min-width: 90px; }

/* Rundenende */
.re-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 12px;
  align-items: center;
  padding: 7px 2px;
  border-bottom: 1px solid #232948;
  font-size: 0.95rem;
}
.re-row:last-of-type { border-bottom: none; }
.re-row .p-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 600; }
.re-av { width: 26px; display: flex; align-items: center; justify-content: center; }
.re-av img { width: 26px; height: 26px; object-fit: contain; }
.re-bt { color: var(--muted); font-variant-numeric: tabular-nums; }
.re-total { color: var(--muted); font-size: 0.85rem; font-variant-numeric: tabular-nums; }
.pos { color: var(--ok); font-weight: 700; }
.neg { color: var(--danger); font-weight: 700; }
.zero { color: var(--muted); font-weight: 700; }
#roundEndModal .btn.primary { width: 100%; margin-top: 14px; }

/* Endstand */
#finalRanking { list-style: none; margin-bottom: 6px; }
.rank-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 4px;
  border-bottom: 1px solid #232948;
  font-size: 1rem;
}
.rank-row:last-child { border-bottom: none; }
.rank-pos { width: 1.8em; font-weight: 800; color: var(--muted); }
.rank-row.first .rank-pos { color: var(--accent-2); }
.rank-row .p-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rank-pts { font-weight: 700; font-variant-numeric: tabular-nums; }

/* Punkte-Tabelle */
.table-scroll { overflow-x: auto; margin: 6px 0 14px; }
.score-table { border-collapse: collapse; width: 100%; font-size: 0.85rem; }
.score-table th, .score-table td {
  border: 1px solid #2c3357;
  padding: 5px 9px;
  text-align: center;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.score-table th { background: #212747; font-weight: 700; }
.score-table tr.total td { background: #212747; font-weight: 700; }
.sc-bt { color: var(--muted); }
.sc-pts { margin-left: 7px; }

/* Lade-Anzeige */
#loading {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 1.05rem;
}

/* --- Responsiv (bis 380 px) ----------------------------------------------- */

@media (max-width: 600px) {
  .card { width: 52px; height: 75px; }
  .card .big { font-size: 1.35rem; }
  .card .big.emoji { font-size: 1.5rem; }
  .card .cname { font-size: 0.45rem; }
  .card.sm { width: 38px; height: 55px; }
  .card.sm .big { font-size: 0.95rem; }
  .hand .card { margin-left: -14px; }
  .hand { min-height: 96px; }
  .table { min-height: 250px; }
  .seat { min-width: 66px; max-width: 104px; padding: 4px 7px; }
  .seat-avatar { width: 28px; height: 28px; }
  .seat-name { font-size: 0.76rem; }
  .seat-sub { font-size: 0.68rem; gap: 5px; }
  .game-header { font-size: 0.85rem; gap: 8px; padding: 7px 9px; }
  .game-header .btn { padding: 7px 10px; font-size: 0.85rem; }
  .room-code { font-size: 1.7rem; }
  .popover { bottom: 126px; }
  .lobby-card { margin: 12px auto; padding: 20px 16px; }
  .container { padding: 20px 12px 50px; }
}

@media (max-width: 400px) {
  .join-row { flex-wrap: wrap; }
  .num-grid { grid-template-columns: repeat(auto-fill, minmax(44px, 1fr)); }
  .header-actions { margin-left: 0; width: 100%; justify-content: flex-end; }
}
