.user_info {
    text-align: left;
}

.user_name {
    font-size: 1rem; /* Equivalent to <h6> */
}

#user-role {
    font-size: 0.9rem;
    color: #555;
}

/* Default state before login */
#verification-indicator {
  color: var(--techwave-heading-color); /* Grey default */
}

/* After login */
.logged-in #verification-indicator,
.verification-active {
  color: #1ed760 !important;  /* Green check after login */
}

/* =========================================================
   AGE VERIFICATION OVERLAY
   ========================================================= */
.silverbranch-age-bg {
    background: rgba(0, 0, 0, 0.92);
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    animation: sbFadeIn 0.35s ease-out;
}

/* =========================================================
   AGE VERIFICATION MODAL (BASE)
   ========================================================= */
.silverbranch-age-checker {
    width: 420px;
    max-width: calc(100% - 40px);
    position: fixed;
    z-index: 10001;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 32px 28px;
    text-align: center;
    border-radius: 12px;
    animation: sbSlideUp 0.4s ease-out;
    font-family: var(--techwave-body-font-family, "Segoe UI", Roboto, sans-serif);
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* =========================================================
   DARK MODE STYLES
   ========================================================= */
.dark-mode .silverbranch-age-checker {
    background: linear-gradient(180deg, #1c1c1c, #151515);
    color: #c0bcca;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.65),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.dark-mode .silverbranch-age-checker h4 {
    color: #1ed760;
}

.dark-mode .silverbranch-age-checker p:last-of-type {
    color: #9a96a8;
}

.dark-mode .silverbranch-age-checker a {
    color: #1ed760;
}

/* =========================================================
   LIGHT MODE STYLES
   ========================================================= */
.light-mode .silverbranch-age-checker {
    background: #ffffff !important;
    color: #222222;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.light-mode .silverbranch-age-checker h4 {
    color: #16a34a;
}

.light-mode .silverbranch-age-checker p:last-of-type {
    color: #666666;
}

.light-mode .silverbranch-age-checker a {
    color: #1a7f37;
}

/* =========================================================
   LOGO
   ========================================================= */
.silverbranch-age-checker img {
    max-width: 180px;
    height: auto;
    margin-bottom: 18px;
}

/* =========================================================
   HEADINGS & TEXT
   ========================================================= */
.silverbranch-age-checker h4 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px;
    letter-spacing: 0.3px;
}

.silverbranch-age-checker p {
    font-size: 16px;
    margin: 0 0 22px;
    line-height: 1.5;
}

/* =========================================================
   BUTTON CONTAINER
   ========================================================= */
.silverbranch-age-checker .button-container {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 26px;
}

/* =========================================================
   BUTTONS (YES / NO)
   ========================================================= */
.yes-button,
.no-button {
    display: inline-flex;
}

.yes-button .close-age-popup,
.no-button a {
    min-width: 110px;
    padding: 12px 26px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    text-align: center;
}

/* YES BUTTON */
.yes-button .close-age-popup {
    background: #1ed760;
    color: #0f1a12;
    box-shadow: 0 4px 12px rgba(30, 215, 96, 0.35);
}

.yes-button .close-age-popup:hover {
    background: #19c853;
    box-shadow: 0 6px 18px rgba(30, 215, 96, 0.45);
    transform: translateY(-1px);
}

/* NO BUTTON */
.no-button a {
    background: #2a2a2a;
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.no-button a:hover {
    background: #333;
    transform: translateY(-1px);
}

/* LIGHT MODE NO BUTTON OVERRIDE */
.light-mode .no-button a {
    background: #e0e0e0;
    color: #222;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.light-mode .no-button a:hover {
    background: #cccccc;
}

/* =========================================================
   TERMS / LEGAL TEXT
   ========================================================= */
.silverbranch-age-checker p:last-of-type {
    font-size: 13px;
    font-style: italic;
    line-height: 1.45;
}

.silverbranch-age-checker a:hover {
    text-decoration: underline;
}

/* =========================================================
   ACCESSIBILITY & FOCUS
   ========================================================= */
.silverbranch-age-checker a:focus,
.silverbranch-age-checker .close-age-popup:focus {
    outline: 2px solid #1ed760;
    outline-offset: 3px;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes sbFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes sbSlideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -44%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* === ENHANCEMENTS: Age Verification Typography & Layout === */

/* 1. Increase size and spacing of the main question */
.silverbranch-age-checker p.age-question {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 32px; /* slightly larger buffer */
}

/* 2. Increase Yes/No button size (padding + font) */
.yes-button .close-age-popup,
.no-button a {
    padding: 14px 32px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
}

/* =========================================================
   CHAT ARCHIVE - EDIT/DELETE
   ========================================================= */

.options__popup {
    display: none;
    position: absolute;
    /* additional styling */
}

.options__popup.active {
    display: block;
}


