/* ============================================================
   Dark Room Public View — Shared Components
   ============================================================ */

.btn-login {
    background: var(--primary);
    color: white !important;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem !important;
    transition: all 0.25s !important;
    border: none;
}

.btn-login:hover {
    background: var(--primary-light) !important;
    transform: translateY(-1px);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    letter-spacing: 0.75px;
    text-transform: uppercase;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.25s ease;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .separator {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.6;
    margin: 0 2px;
}

.breadcrumb .active {
    color: var(--primary);
    font-weight: 700;
}

.loading-state,
.empty-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
}

/* Entrance transitions for dynamically loaded views */
.view-enter {
    animation: viewEnter 0.55s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

@keyframes viewEnter {
    from {
        opacity: 0;
        transform: translateY(14px);
        filter: blur(3px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}
