/* ============================================================
   Estimatey — Brand Colors
   Dark charcoal:  #1e1e1e
   Warm cream:     #f0d9c0
   Olive green:    #4a6741
   Warm brown:     #3d2b1f
   Skin accent:    #d4956a
   ============================================================ */

:root {
    --est-dark:      #1e1e1e;
    --est-dark2:     #2a2a2a;
    --est-dark3:     #333333;
    --est-cream:     #f0d9c0;
    --est-cream2:    #f5e6d3;
    --est-olive:     #4a6741;
    --est-olive2:    #3d5c35;
    --est-brown:     #3d2b1f;
    --est-skin:      #d4956a;
    --est-skin2:     #c4845a;
    --est-shadow:    0 4px 16px rgba(0,0,0,0.5);
    --est-radius:    12px;
    --est-radius-sm: 8px;
}

/* ---- Base ---- */
html {
    font-size: 16px;
    height: 100%;
}

body {
    background-color: var(--est-dark);
    color: var(--est-cream);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ---- Navbar ---- */
.estimatey-navbar {
    background-color: var(--est-dark2);
    border-bottom: 2px solid var(--est-olive);
    box-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.estimatey-brand {
    color: var(--est-cream) !important;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
}

.estimatey-brand:hover {
    color: var(--est-skin) !important;
}

.brand-logo {
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.estimatey-brand:hover .brand-logo {
    transform: rotate(-5deg) scale(1.05);
}

.nav-link-cream {
    color: var(--est-cream) !important;
    transition: color 0.2s;
}

.nav-link-cream:hover {
    color: var(--est-skin) !important;
}

.text-cream { color: var(--est-cream); }
.text-muted-cream { color: rgba(240, 217, 192, 0.55); }

/* ---- Footer ---- */
.estimatey-footer {
    background-color: var(--est-dark2);
    border-top: 1px solid rgba(74, 103, 65, 0.4);
    flex-shrink: 0;
}

/* ---- Cards & Panels ---- */
.est-card {
    background-color: var(--est-dark2);
    border: 1px solid rgba(74, 103, 65, 0.35);
    border-radius: var(--est-radius);
    box-shadow: var(--est-shadow);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.est-card:hover {
    border-color: var(--est-olive);
}

.est-card-header {
    background-color: var(--est-olive2);
    border-radius: var(--est-radius) var(--est-radius) 0 0;
    padding: 0.8rem 1.2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--est-cream);
}

/* ---- Buttons ---- */
.btn-est-primary {
    background-color: var(--est-olive);
    border-color: var(--est-olive2);
    color: var(--est-cream);
    font-weight: 600;
    border-radius: var(--est-radius-sm);
    transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
}

.btn-est-primary:hover {
    background-color: var(--est-olive2);
    border-color: var(--est-brown);
    color: var(--est-cream);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 103, 65, 0.5);
}

.btn-est-primary:active {
    transform: translateY(0);
}

.btn-est-secondary {
    background-color: transparent;
    border: 1.5px solid var(--est-olive);
    color: var(--est-cream);
    border-radius: var(--est-radius-sm);
    font-weight: 600;
    transition: all 0.2s;
}

.btn-est-secondary:hover {
    background-color: rgba(74, 103, 65, 0.3);
    color: var(--est-cream);
    transform: translateY(-1px);
}

.btn-est-danger {
    background-color: #7a2020;
    border-color: #5a1515;
    color: var(--est-cream);
    border-radius: var(--est-radius-sm);
    font-weight: 600;
    transition: all 0.2s;
}

.btn-est-danger:hover {
    background-color: #6a1515;
    color: var(--est-cream);
    transform: translateY(-1px);
}

.btn-est-skin {
    background-color: var(--est-skin);
    border-color: var(--est-skin2);
    color: var(--est-brown);
    font-weight: 700;
    border-radius: var(--est-radius-sm);
    transition: all 0.2s;
}

.btn-est-skin:hover {
    background-color: var(--est-skin2);
    color: var(--est-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 149, 106, 0.45);
}

/* ---- Form Controls ---- */
.form-control-est,
.form-select-est {
    background-color: var(--est-dark3);
    border: 1.5px solid rgba(74, 103, 65, 0.5);
    color: var(--est-cream);
    border-radius: var(--est-radius-sm);
    padding: 0.55rem 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control-est:focus,
.form-select-est:focus {
    background-color: var(--est-dark3);
    border-color: var(--est-olive);
    color: var(--est-cream);
    box-shadow: 0 0 0 0.2rem rgba(74, 103, 65, 0.35);
    outline: none;
}

.form-control-est::placeholder {
    color: rgba(240, 217, 192, 0.4);
}

.form-control-est option,
.form-select-est option {
    background-color: var(--est-dark2);
    color: var(--est-cream);
}

textarea.form-control-est {
    resize: vertical;
    min-height: 80px;
}

/* ---- Landing page ---- */
.landing-hero {
    min-height: calc(100vh - 130px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
}

.landing-logo {
    width: 160px;
    height: 160px;
    border-radius: 24px;
    margin-bottom: 1.5rem;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(74, 103, 65, 0.4);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

.landing-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--est-cream);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(74, 103, 65, 0.5);
}

.landing-subtitle {
    font-size: 1.25rem;
    color: var(--est-skin);
    margin-bottom: 2.5rem;
}

.landing-card {
    background-color: var(--est-dark2);
    border: 1.5px solid rgba(74, 103, 65, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--est-shadow);
    max-width: 480px;
    width: 100%;
}

.landing-features {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2.5rem;
}

.feature-pill {
    background: rgba(74, 103, 65, 0.2);
    border: 1px solid rgba(74, 103, 65, 0.4);
    color: var(--est-cream);
    border-radius: 50px;
    padding: 0.45rem 1.1rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.2s, transform 0.2s;
}

.feature-pill:hover {
    background: rgba(74, 103, 65, 0.4);
    transform: translateY(-2px);
}

/* ---- Room layout ---- */
.room-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 1rem;
    min-height: calc(100vh - 130px);
    padding: 1rem;
}

.room-sidebar {
    grid-row: 1 / 4;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.room-header {
    grid-column: 2;
    grid-row: 1;
}

.room-main {
    grid-column: 2;
    grid-row: 2;
}

.room-voting {
    grid-column: 2;
    grid-row: 3;
}

@media (max-width: 768px) {
    .room-layout {
        grid-template-columns: 1fr;
    }
    .room-sidebar {
        grid-row: auto;
    }
    .room-header, .room-main, .room-voting {
        grid-column: 1;
        grid-row: auto;
    }
}

/* ---- Participants ---- */
.participant-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.participant-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--est-radius-sm);
    transition: background 0.2s;
    margin-bottom: 0.3rem;
}

.participant-item:hover {
    background: rgba(74, 103, 65, 0.15);
}

.participant-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--est-olive), var(--est-skin));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--est-dark);
    flex-shrink: 0;
    text-transform: uppercase;
}

.participant-name {
    font-size: 0.9rem;
    font-weight: 500;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vote-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(240, 217, 192, 0.2);
    flex-shrink: 0;
}

.vote-indicator.voted {
    background: var(--est-olive);
    box-shadow: 0 0 6px var(--est-olive);
    animation: pulse-vote 1.5s infinite;
}

@keyframes pulse-vote {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}

/* ---- Items list ---- */
.items-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.item-entry {
    padding: 0.6rem 0.85rem;
    border-radius: var(--est-radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
}

.item-entry:hover {
    background: rgba(74, 103, 65, 0.2);
    border-color: rgba(74, 103, 65, 0.4);
}

.item-entry.active {
    background: rgba(74, 103, 65, 0.3);
    border-color: var(--est-olive);
}

.item-type-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.badge-story  { background: var(--est-olive);  color: var(--est-cream); }
.badge-bug    { background: #7a2020;            color: var(--est-cream); }
.badge-issue  { background: #4a4a7a;            color: var(--est-cream); }

.item-estimate-badge {
    margin-left: auto;
    background: var(--est-skin);
    color: var(--est-dark);
    font-weight: 800;
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    flex-shrink: 0;
}

/* ---- Active Item Panel ---- */
.active-item-panel {
    background: var(--est-dark2);
    border: 1.5px solid rgba(74, 103, 65, 0.35);
    border-radius: var(--est-radius);
    overflow: hidden;
}

.active-item-header {
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, var(--est-brown) 0%, var(--est-dark3) 100%);
    border-bottom: 1px solid rgba(74, 103, 65, 0.3);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.active-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--est-cream);
    margin: 0;
    flex: 1;
}

.active-item-body {
    padding: 1.2rem;
}

.github-panel {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(74, 103, 65, 0.3);
    border-radius: var(--est-radius-sm);
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
}

.github-body {
    color: rgba(240, 217, 192, 0.75);
    white-space: pre-wrap;
    max-height: 200px;
    overflow-y: auto;
    font-size: 0.8rem;
    line-height: 1.6;
}

.acceptance-criteria {
    background: rgba(74, 103, 65, 0.1);
    border-left: 3px solid var(--est-olive);
    padding: 0.6rem 0.8rem;
    margin-top: 0.5rem;
    border-radius: 0 var(--est-radius-sm) var(--est-radius-sm) 0;
    font-size: 0.8rem;
    white-space: pre-wrap;
    color: rgba(240, 217, 192, 0.85);
}

.label-chip {
    display: inline-block;
    padding: 0.15rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin: 0.1rem;
    background: rgba(74, 103, 65, 0.4);
    color: var(--est-cream);
}

/* ---- Timer ---- */
.timer-display {
    font-size: 2.5rem;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.08em;
    color: var(--est-cream);
    text-align: center;
    transition: color 0.3s;
}

.timer-display.warning   { color: var(--est-skin); animation: timer-warning 1s infinite; }
.timer-display.urgent    { color: #e05555;          animation: timer-warning 0.5s infinite; }

@keyframes timer-warning {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.65; }
}

.timer-controls {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0.5rem;
}

/* ---- Voting cards ---- */
.voting-area {
    padding: 1.2rem;
    background: var(--est-dark2);
    border: 1.5px solid rgba(74, 103, 65, 0.35);
    border-radius: var(--est-radius);
}

.voting-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--est-skin);
    margin-bottom: 0.8rem;
}

.cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.vote-card {
    width: 58px;
    height: 82px;
    border-radius: 10px;
    border: 2px solid rgba(74, 103, 65, 0.4);
    background: var(--est-dark3);
    color: var(--est-cream);
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    user-select: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.vote-card::before,
.vote-card::after {
    content: attr(data-value);
    position: absolute;
    font-size: 0.55rem;
    font-weight: 700;
    color: rgba(240, 217, 192, 0.5);
}
.vote-card::before { top: 4px; left: 5px; }
.vote-card::after  { bottom: 4px; right: 5px; transform: rotate(180deg); }

.vote-card:hover {
    border-color: var(--est-olive);
    background: rgba(74, 103, 65, 0.2);
    transform: translateY(-8px) rotate(-2deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(74, 103, 65, 0.4);
    color: var(--est-cream);
}

.vote-card.selected {
    border-color: var(--est-skin);
    background: linear-gradient(135deg, rgba(212, 149, 106, 0.3), rgba(74, 103, 65, 0.3));
    transform: translateY(-10px) scale(1.08);
    box-shadow: 0 10px 25px rgba(212, 149, 106, 0.45);
    color: var(--est-cream2);
}

.vote-card.selected::before,
.vote-card.selected::after {
    color: var(--est-skin);
}

/* ---- Results ---- */
.results-area {
    animation: results-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes results-in {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.result-card {
    background: var(--est-dark3);
    border: 1.5px solid rgba(240, 217, 192, 0.15);
    border-radius: var(--est-radius-sm);
    padding: 0.9rem;
    text-align: center;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.result-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 103, 65, 0.1), transparent);
    pointer-events: none;
}

.result-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--est-cream);
    line-height: 1;
}

.result-name {
    font-size: 0.72rem;
    color: rgba(240, 217, 192, 0.6);
    margin-top: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.consensus-banner {
    background: linear-gradient(135deg, var(--est-olive2), var(--est-olive));
    border-radius: var(--est-radius-sm);
    padding: 1rem 1.5rem;
    text-align: center;
    animation: pop-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes pop-in {
    from { transform: scale(0.5); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.stats-bar {
    height: 8px;
    background: var(--est-dark3);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.stats-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--est-olive), var(--est-skin));
    border-radius: 4px;
    transition: width 0.6s ease;
}

/* ---- Connection status ---- */
.connection-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.4rem;
    transition: background 0.3s;
}
.connection-dot.connected    { background: #4caf50; box-shadow: 0 0 6px #4caf50; }
.connection-dot.disconnected { background: #e05555; }
.connection-dot.connecting   { background: var(--est-skin); animation: pulse-vote 1s infinite; }

/* ---- Toasts ---- */
.est-toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.est-toast {
    background: var(--est-dark2);
    border: 1px solid var(--est-olive);
    border-radius: var(--est-radius-sm);
    padding: 0.75rem 1rem;
    color: var(--est-cream);
    font-size: 0.88rem;
    min-width: 220px;
    box-shadow: var(--est-shadow);
    animation: toast-in 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@keyframes toast-in {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

/* ---- Confetti ---- */
.confetti-emoji {
    position: fixed;
    pointer-events: none;
    font-size: 1.8rem;
    animation: confetti-fall 2.5s ease-in forwards;
    z-index: 9999;
}

.confetti-emoji-big {
    font-size: 2.8rem;
}

@keyframes confetti-fall {
    0%   { opacity: 1; transform: translateY(-50px) rotate(0deg); }
    100% { opacity: 0; transform: translateY(100vh) rotate(720deg); }
}

/* Consensus full-screen overlay text */
.consensus-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.3);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--est-skin);
    text-shadow: 0 0 40px var(--est-olive), 0 0 80px rgba(240,217,192,.4);
    z-index: 10000;
    pointer-events: none;
    white-space: nowrap;
    animation: consensus-pop 2.5s ease-out forwards;
}

@keyframes consensus-pop {
    0%   { opacity: 0;   transform: translate(-50%, -50%) scale(0.3); }
    15%  { opacity: 1;   transform: translate(-50%, -50%) scale(1.25); }
    30%  { opacity: 1;   transform: translate(-50%, -50%) scale(1.0); }
    75%  { opacity: 1;   transform: translate(-50%, -50%) scale(1.0); }
    100% { opacity: 0;   transform: translate(-50%, -50%) scale(0.85); }
}

/* ---- Modals ---- */
.modal-content {
    background-color: var(--est-dark2);
    border: 1.5px solid rgba(74, 103, 65, 0.4);
    border-radius: var(--est-radius);
    color: var(--est-cream);
}

.modal-header {
    border-bottom-color: rgba(74, 103, 65, 0.3);
}

.modal-footer {
    border-top-color: rgba(74, 103, 65, 0.3);
}

.btn-close {
    filter: invert(1);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--est-dark); }
::-webkit-scrollbar-thumb { background: var(--est-olive2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--est-olive); }

/* ---- Misc utilities ---- */
.separator {
    border-color: rgba(74, 103, 65, 0.3);
    margin: 0.5rem 0;
}

.badge-est {
    background: rgba(74, 103, 65, 0.4);
    color: var(--est-cream);
    font-weight: 700;
}

.empty-state {
    text-align: center;
    padding: 2rem 1rem;
    color: rgba(240, 217, 192, 0.45);
}

.empty-state i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Bootstrap overrides ---- */
.nav-pills .nav-link {
    color: rgba(240, 217, 192, 0.65);
    border-radius: var(--est-radius-sm);
    transition: color 0.2s, background-color 0.2s;
}
.nav-pills .nav-link:hover {
    color: var(--est-cream);
    background: rgba(74, 103, 65, 0.2);
}
.nav-pills .nav-link.active {
    background-color: var(--est-olive);
    color: var(--est-cream);
}

.dropdown-menu-dark {
    background-color: var(--est-dark2);
    border-color: rgba(74, 103, 65, 0.4);
}
.dropdown-menu-dark .dropdown-item {
    color: var(--est-cream);
}
.dropdown-menu-dark .dropdown-item:hover {
    background-color: rgba(74, 103, 65, 0.3);
    color: var(--est-cream);
}

.alert-danger {
    background-color: rgba(122, 32, 32, 0.3);
    border-color: rgba(122, 32, 32, 0.5);
    color: #f5a0a0;
}

.is-invalid {
    border-color: #e05555 !important;
}

/* ---- Role Selector (landing page) ---- */
.role-selector {
    display: flex;
    gap: 0.6rem;
}

.role-option {
    flex: 1;
    cursor: pointer;
    margin: 0;
}

.role-option input[type="radio"] {
    display: none;
}

.role-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.9rem;
    border-radius: var(--est-radius-sm);
    border: 1.5px solid rgba(74, 103, 65, 0.5);
    background: var(--est-dark3);
    color: rgba(240, 217, 192, 0.65);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
    user-select: none;
}

.role-btn:hover {
    border-color: var(--est-olive);
    color: var(--est-cream);
}

.role-option input[type="radio"]:checked + .role-btn {
    border-color: var(--est-olive);
    background: rgba(74, 103, 65, 0.25);
    color: var(--est-cream);
    box-shadow: 0 0 0 2px rgba(74, 103, 65, 0.3);
}

/* ---- Observer — participant list ---- */
.observer-badge {
    background: rgba(74, 103, 65, 0.25);
    color: rgba(240, 217, 192, 0.7);
    font-size: 0.6rem;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    border: 1px solid rgba(74, 103, 65, 0.35);
    vertical-align: middle;
}

.observer-avatar {
    opacity: 0.65;
}

/* ---- Observer — room notice banner ---- */
.observer-notice {
    padding: 0.9rem 1.4rem;
    background: rgba(74, 103, 65, 0.15);
    border: 1.5px solid rgba(74, 103, 65, 0.4);
    border-radius: var(--est-radius);
    color: rgba(240, 217, 192, 0.8);
    font-size: 0.9rem;
    text-align: center;
}
