.content-section {
    display: none;
}

.content-section.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.audio-wave {
    height: 40px;
    background: linear-gradient(90deg, #3B82F6 0%, rgba(59, 130, 246, 0.2) 100%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.audio-wave::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.3) 2px,
        rgba(255, 255, 255, 0.3) 4px
    );
    animation: wave 1s linear infinite;
}

@keyframes wave {
    from { transform: translateX(-4px); }
    to { transform: translateX(0); }
}

.role-badge {
    font-size: 0.75rem;
    line-height: 1rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-weight: 600;
}

.role-badge.admin {
    background-color: #EDE9FE;
    color: #7C3AED;
}

.role-badge.manager {
    background-color: #DBEAFE;
    color: #1D4ED8;
}

.role-badge.viewer {
    background-color: #D1FAE5;
    color: #065F46;
}

.prose {
    color: #374151;
    line-height: 1.6;
}

.prose p {
    margin-bottom: 1rem;
}

.prose strong {
    font-weight: 600;
}

.prose ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}