/* ------------------------------
   Streamed Apps Pulse Label
------------------------------ */
.streamed-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    animation: labelPulse 2.4s infinite ease-in-out;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #1a73e8;
    border-radius: 50%;
    animation: dotPulse 1.6s infinite ease-in-out;
}

@keyframes dotPulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.6); opacity: 0.4; }
    100% { transform: scale(1); opacity: 0.9; }
}

@keyframes labelPulse {
    0% { opacity: 0.85; }
    50% { opacity: 1; }
    100% { opacity: 0.85; }
}

/* ------------------------------
   Collapsible Children
------------------------------ */
.nav-children {
    margin-left: 32px;
    display: none;
    flex-direction: column;
    gap: 2px;
}

.nav-children.open {
    display: flex;
}

.nav-item.child {
    padding-left: 6px;
}

.child-icon {
    opacity: 0.8;
    font-size: 16px;
}

/* ------------------------------
   Toggle Arrow
------------------------------ */
.toggle-arrow {
    margin-left: auto;
    font-size: 14px;
    opacity: 0.7;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.toggle-arrow.open {
    transform: rotate(90deg);
}

/* ------------------------------
   Parent Link Wrapper
------------------------------ */
.nav-link-parent {
    display: flex;
    align-items: center;
    flex: 1;
    text-decoration: none;
    color: inherit;
}

/* Restore spacing between icon + label */
.nav-link-parent .nav-icon {
    margin-right: 10px;
}
