.logo-img {
    height: 28px;
    width: auto;
}

.logo-divider {
    width: 1px;
    height: 22px;
    background: var(--border);
    margin: 0 4px;
}

.header-wordmark-img {
    height: 18px;
    width: auto;
}

.site-footer {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.header-logout {
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--foreground);
    background: transparent;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

.header-logout:hover {
    background: var(--muted);
    border-color: var(--muted-foreground);
}

@media (max-width: 768px) {
    .logo-img {
        height: 22px;
    }

    .header-wordmark-img {
        height: 14px;
    }

    .logo-divider {
        height: 18px;
    }
}

.mobile-menu-toggle {
    display: none;
}

@media (max-width: 1279px) {
    .mobile-menu-toggle {
        display: inline-flex;
    }

    .header-email,
    .header-logout {
        display: none;
    }
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
}

.mobile-nav-link {
    display: block;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-decoration: none;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    color: var(--foreground);
    background: var(--muted);
}

.mobile-nav-link.active {
    color: var(--primary);
    border-left-color: var(--primary);
}

.mobile-nav-user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 1.5rem;
    border-top: 1px solid var(--border);
    margin-top: 0.25rem;
}

@media (min-width: 1280px) {
    .mobile-nav {
        display: none !important;
    }
}

.d-none {
    display: none !important;
}

.login-container {
    padding: 2rem;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-pointer:hover td {
    background: var(--muted);
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.detail-row dt {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    flex-shrink: 0;
    margin-right: 1rem;
}

.detail-row dd {
    font-size: 0.875rem;
    text-align: right;
}

.text-destructive {
    color: var(--destructive);
}

.text-warning {
    color: hsl(38, 92%, 50%);
}

.timeline {
    position: relative;
    padding-left: 1.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.375rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 1px;
    background: var(--border);
}

.timeline-entry {
    position: relative;
    padding-bottom: 1rem;
}

.timeline-entry:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -1.125rem;
    top: 0.375rem;
    width: 0.5rem;
    height: 0.5rem;
    border: 1px solid var(--border);
    background: var(--background);
}

.timeline-content {
    padding-top: 0;
}
