/* =============================================================
   includes/sidebar.css — styles for pts-sidebar component
   ============================================================= */

/* ── Subnav links ── */
.pts-subnav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px 8px 20px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #c9d1e0;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}

.pts-subnav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.pts-subnav a i {
    font-size: 0.78rem;
    opacity: 0.75;
    color: #a0aec0;
    flex-shrink: 0;
}

.pts-subnav-active {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

.pts-subnav-active i {
    opacity: 1 !important;
    color: #ffffff !important;
}

.pts-subnav-locked {
    opacity: 0.45;
    pointer-events: none;
    cursor: not-allowed;
}

/* ── Nav section label ── */
.pts-nav-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7a99;
    padding: 4px 12px 6px;
    margin-top: 8px;
}

/* ── Nav arrow rotation when open ── */
.pts-nav-item.open .pts-nav-arrow i {
    transform: rotate(90deg);
}

.pts-nav-arrow i {
    transition: transform 0.2s ease;
}

/* ── Guest notice ── */
.pts-guest-notice {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 16px;
    margin: 0 0 8px 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.pts-guest-notice > i {
    font-size: 1.4rem;
    color: #6b7a99;
}

.pts-guest-notice p {
    margin: 0;
    font-size: 0.8rem;
    color: #8a95aa;
    line-height: 1.5;
}

/* ── Sign In button ── */
.pts-signin-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 22px;
    border-radius: 7px;
    background: var(--primary, #4f7ef7);
    color: #ffffff !important;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: opacity 0.15s, transform 0.15s;
    margin-top: 2px;
    white-space: nowrap;
}

.pts-signin-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.pts-signin-btn i {
    font-size: 0.85rem;
}
