@import url("phosphor.css");

/* ============================================================
   DESIGN SYSTEM — Verarbeitungssoftware
   ============================================================ */

/* ── Variablen ── */
:root {
  --graphite:       #353535ff;
  --stormy-teal:    #3c6e71ff;
  --white:          #ffffffff;
  --alabaster-grey: #d9d9d9ff;
  --yale-blue:      #284b63ff;
}


/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: Georgia, serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--graphite);
  background: #f4f4f2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  padding: 0 2rem;
}

#headline {
  padding: 0 2rem;
}

.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}


/* ============================================================
   HEADER
   ============================================================ */

.header {
  background: var(--yale-blue);
  border-bottom: 3px solid var(--stormy-teal);
  width: 100%;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 60px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo {
  width: 32px;
  height: 32px;
  background: var(--stormy-teal);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-logo svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.header-title {
  font-size: 15px;
  font-weight: normal;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.25);
  margin: 0 4px;
}

.header-subtitle {
  font-size: 11px;
  color: rgba(217,217,217,0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-badge {
  font-size: 10px;
  color: var(--stormy-teal);
  background: rgba(60,110,113,0.15);
  border: 1px solid rgba(60,110,113,0.4);
  border-radius: 3px;
  padding: 2px 8px;
  letter-spacing: 0.06em;
}

.header-user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.12);
}

.header-avatar {
  width: 26px;
  height: 26px;
  background: var(--stormy-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}

.header-username {
  font-size: 12px;
  color: rgba(217,217,217,0.85);
  letter-spacing: 0.04em;
}

.header-nav {
  background: var(--graphite);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  height: 40px;
  gap: 2px;
}

.nav-item {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(217,217,217,0.65);
  padding: 0 14px;
  height: 40px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: color 0.15s;
}

.nav-item:hover  { color: var(--white); }
.nav-item.active { color: var(--white); }

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--stormy-teal);
}

.nav-separator {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.1);
  margin: 0 4px;
}

.nav-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: rgba(217,217,217,0.45);
  letter-spacing: 0.06em;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5cba8a;
}

.breadcrumb {
  background: var(--alabaster-grey);
  padding: 0 2rem;
  height: 32px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(53,53,53,0.12);
}

.breadcrumb-item {
  font-size: 11px;
  color: rgba(53,53,53,0.55);
  letter-spacing: 0.04em;
}

.breadcrumb-sep {
  font-size: 11px;
  color: rgba(53,53,53,0.3);
}

.breadcrumb-item.current {
  color: var(--graphite);
  font-weight: 600;
}


/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--graphite);
  border-top: 3px solid var(--stormy-teal);
  width: 100%;
}

.footer-status-bar {
  background: var(--yale-blue);
  padding: 0 2rem;
  height: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.status-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(217,217,217,0.4);
}

.status-item strong {
  color: rgba(217,217,217,0.65);
  font-weight: normal;
}

.status-dot-green {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5cba8a;
  flex-shrink: 0;
}

.status-dot-amber {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c8903a;
  flex-shrink: 0;
}

.status-spacer { margin-left: auto; }

.footer-timestamp {
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(217,217,217,0.25);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  width: 20px;
  height: 20px;
  background: var(--stormy-teal);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo svg {
  width: 11px;
  height: 11px;
  fill: var(--white);
}

.footer-name {
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.footer-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.12);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.footer-link {
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(217,217,217,0.4);
  padding: 0 10px;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-link:hover { color: rgba(217,217,217,0.85); }

.footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-session {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(217,217,217,0.35);
}

.footer-session-label { color: rgba(217,217,217,0.25); }
.footer-session-value { color: rgba(60,110,113,0.9); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 28px;
  background: rgba(0,0,0,0.15);
}

.footer-copy {
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(217,217,217,0.25);
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-meta-item {
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(217,217,217,0.25);
}

.footer-meta-item span {
  color: rgba(217,217,217,0.45);
}


/* ============================================================
   DASHBOARD / KACHELMENÜ
   ============================================================ */

.dashboard {
  padding: 2.5rem 2rem;
}

.dashboard-title {
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(53,53,53,0.45);
  margin-bottom: 1.5rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 90%;
}

.menu-tile {
  background: var(--white);
  border: 1px solid var(--alabaster-grey);
  border-top: 3px solid var(--yale-blue);
  border-radius: 3px;
  padding: 2rem 1.5rem 1.75rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: border-top-color 0.15s, background 0.15s;
  cursor: pointer;
}

.menu-tile:hover {
  border-top-color: var(--stormy-teal);
  background: #fafafa;
}

.menu-tile:hover .tile-icon  { background: var(--stormy-teal); }
.menu-tile:hover .tile-arrow { opacity: 1; }

.tile-icon {
  width: 52px!important;
  height: 52px!important;
  background: var(--yale-blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}

.tile-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tile-body { flex: 1; width: 100%; }

.tile-title {
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: bold;
  color: var(--graphite);
  margin-bottom: 4px;
}

.tile-desc {
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(53,53,53,0.5);
  line-height: 1.5;
}

.tile-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--alabaster-grey);
}

.tile-handler {
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.07em;
  color: rgba(53,53,53,0.3);
}

.tile-arrow {
  opacity: 0;
  transition: opacity 0.15s;
}

.tile-arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--stormy-teal);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ============================================================
   TYPOGRAFIE
   ============================================================ */

h1 {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: normal;
  color: var(--yale-blue);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 1rem;
  border-left: 4px solid var(--stormy-teal);
  padding: 0.5rem 0 0.5rem 14px;
}

.headlineBtn { vertical-align: top;
margin-left: 15px !important; }

h2 {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: normal;
  color: var(--yale-blue);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--alabaster-grey);
}

h3 {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: bold;
  color: var(--graphite);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

h4 {
  font-family: monospace;
  font-size: 13px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stormy-teal);
  margin-bottom: 0.4rem;
}

h5 {
  font-family: monospace;
  font-size: 11px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(53,53,53,0.55);
  margin-bottom: 0.3rem;
}

p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--graphite);
  margin-bottom: 1rem;
}

p:last-child { margin-bottom: 0; }

a {
  color: var(--stormy-teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(60,110,113,0.35);
  transition: border-color 0.15s;
}

a:hover { border-color: var(--stormy-teal); }

strong, b { font-weight: bold; color: var(--graphite); }
em, i     { font-style: italic; }

small {
  font-size: 12px;
  color: rgba(53,53,53,0.55);
  font-family: monospace;
}

code {
  font-family: monospace;
  font-size: 13px;
  background: var(--alabaster-grey);
  color: var(--yale-blue);
  padding: 2px 6px;
  border-radius: 3px;
}

pre {
  font-family: monospace;
  font-size: 13px;
  background: var(--graphite);
  color: var(--alabaster-grey);
  padding: 1rem 1.25rem;
  border-radius: 4px;
  overflow-x: auto;
  line-height: 1.6;
  margin-bottom: 1rem;
}

pre code {
  background: none;
  color: inherit;
  padding: 0;
  font-size: inherit;
}

blockquote {
  border-left: 3px solid var(--stormy-teal);
  padding: 0.5rem 0 0.5rem 1rem;
  margin: 1rem 0;
  color: rgba(53,53,53,0.7);
  font-style: italic;
  font-size: 15px;
}

hr {
  border: none;
  border-top: 1px solid var(--alabaster-grey);
  margin: 1.5rem 0;
}

mark {
  background: rgba(60,110,113,0.18);
  color: var(--graphite);
  padding: 1px 4px;
  border-radius: 2px;
}

ul, ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

ul { list-style: none; }

ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 1.65;
}

ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--stormy-teal);
}

ol li {
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 1.65;
}

ol li::marker {
  color: var(--stormy-teal);
  font-family: monospace;
  font-size: 13px;
}


/* ============================================================
   FORMULARELEMENTE
   ============================================================ */

label {
  display: block;
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(53,53,53,0.6);
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="time"],
input[type="datetime-local"],
select,
textarea {
  display: block;
  width: 100%;
  font-family: Georgia, serif;
  font-size: 14px;
  color: var(--graphite);
  background: var(--white);
  border: 1px solid var(--alabaster-grey);
  border-radius: 3px;
  padding: 8px 12px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
  margin-bottom: 1rem;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="datetime-local"]:focus,
select:focus,
textarea:focus {
  border-color: var(--stormy-teal);
  box-shadow: 0 0 0 3px rgba(60,110,113,0.12);
}

input:disabled,
select:disabled,
textarea:disabled {
  background: var(--alabaster-grey);
  color: rgba(53,53,53,0.45);
  cursor: not-allowed;
}

input::placeholder,
textarea::placeholder {
  color: rgba(53,53,53,0.35);
}

textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233c6e71' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}

input[type="checkbox"],
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--alabaster-grey);
  border-radius: 3px;
  background: var(--white);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s;
  margin-bottom: 0;
}

input[type="radio"] { border-radius: 50%; }

input[type="checkbox"]:checked,
input[type="radio"]:checked {
  background: var(--stormy-teal);
  border-color: var(--stormy-teal);
}

input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(40deg);
}

input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.datetime-wrap {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  max-width: 420px;
}

.datetime-wrap .field      { flex: 1; }
.datetime-wrap .field-time { flex: 0 0 140px; }

.datetime-sep {
  font-family: monospace;
  font-size: 18px;
  color: var(--alabaster-grey);
  padding-bottom: 10px;
  flex-shrink: 0;
}

.field-hint {
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(53,53,53,0.4);
  margin-top: 5px;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  font-family: Georgia, serif;
  color: var(--graphite);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 1.5rem;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: monospace;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  text-decoration: none;
  line-height: 1;
}

.btn:hover { border-bottom: 1px solid transparent; }

.btn-primary {
  background: var(--yale-blue);
  color: var(--white);
  border-color: var(--yale-blue);
}

.btn-primary:hover {
  background: var(--stormy-teal);
  border-color: var(--stormy-teal);
}

.btn-secondary {
  background: transparent;
  color: var(--yale-blue);
  border-color: var(--yale-blue);
}

.btn-secondary:hover {
  background: var(--yale-blue);
  color: var(--white);
}

.btn-teal {
  background: var(--stormy-teal);
  color: var(--white);
  border-color: var(--stormy-teal);
}

.btn-teal:hover {
  background: var(--yale-blue);
  border-color: var(--yale-blue);
}

.btn-danger {
  background: transparent;
  color: #8b2e2e;
  border-color: #c47a7a;
}

.btn-danger:hover {
  background: #8b2e2e;
  color: var(--white);
  border-color: #8b2e2e;
}

.btn-sm { padding: 5px 12px; font-size: 10px; }
.btn-lg { padding: 12px 28px; font-size: 13px; }

.btn-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}


/* ============================================================
   TABELLE
   ============================================================ */

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 1rem;
}

thead tr { background: var(--yale-blue); }

thead th {
  font-family: monospace;
  font-size: 11px;
  font-weight: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 10px 14px;
  text-align: left;
}

tbody tr {
  border-bottom: 1px solid var(--alabaster-grey);
  transition: background 0.1s;
}

tbody tr:hover { background: rgba(60,110,113,0.05); }
tbody tr:last-child { border-bottom: none; }

td {
  padding: 9px 14px;
  color: var(--graphite);
  line-height: 1.4;
  vertical-align: middle;
}

td.muted {
  color: rgba(53,53,53,0.5);
  font-family: monospace;
  font-size: 12px;
}

tfoot tr { background: var(--alabaster-grey); }

tfoot td {
  font-family: monospace;
  font-size: 12px;
  color: rgba(53,53,53,0.6);
  padding: 7px 14px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}


/* ============================================================
   BADGES
   ============================================================ */

.badge {
  display: inline-block;
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

.badge-success {
  background: rgba(60,110,113,0.12);
  color: #2a5c5e;
  border: 1px solid rgba(60,110,113,0.25);
}

.badge-warning {
  background: rgba(180,130,40,0.12);
  color: #7a5010;
  border: 1px solid rgba(180,130,40,0.3);
}

.badge-danger {
  background: rgba(160,50,50,0.1);
  color: #7a2020;
  border: 1px solid rgba(160,50,50,0.25);
}

.badge-info {
  background: rgba(40,75,99,0.1);
  color: var(--yale-blue);
  border: 1px solid rgba(40,75,99,0.2);
}

.badge-neutral {
  background: rgba(53,53,53,0.08);
  color: rgba(53,53,53,0.6);
  border: 1px solid rgba(53,53,53,0.15);
}


/* ============================================================
   ALERTS / HINWEISBOXEN
   ============================================================ */

.alert {
  padding: 12px 16px;
  border-radius: 3px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 1rem;
  border-left: 3px solid;
  font-family: Georgia, serif;
}

.alert-info    { background: rgba(40,75,99,0.07);   color: var(--yale-blue); border-color: var(--yale-blue); }
.alert-success { background: rgba(60,110,113,0.08); color: #2a5c5e;          border-color: var(--stormy-teal); }
.alert-warning { background: rgba(180,130,40,0.08); color: #7a5010;          border-color: #b08228; }
.alert-danger  { background: rgba(160,50,50,0.07);  color: #7a2020;          border-color: #a03030; }


/* ============================================================
   KARTEN / PANELS
   ============================================================ */

.card {
  background: var(--white);
  border: 1px solid var(--alabaster-grey);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.card-header {
  border-bottom: 1px solid var(--alabaster-grey);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

.card-header h2,
.card-header h3 {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.card-footer {
  border-top: 1px solid var(--alabaster-grey);
  padding-top: 0.75rem;
  margin-top: 1rem;
}


/* ============================================================
   HILFSKLASSEN
   ============================================================ */

.text-muted  { color: rgba(53,53,53,0.5); }
.text-teal   { color: var(--stormy-teal); }
.text-blue   { color: var(--yale-blue); }
.text-small  { font-size: 12px; font-family: monospace; }
.text-mono   { font-family: monospace; }
.text-right  { text-align: right; }
.text-center { text-align: center; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.d-flex       { display: flex; }
.align-center { align-items: center; }
.gap-1        { gap: 0.5rem; }
.gap-2        { gap: 1rem; }