.unmute-join {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unmute-join > .section {
    width: 100%;
}

.join-panel {
    max-width: 42rem;
    margin: 0 auto;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
}

.join-code-field .input {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0;
}

.eyebrow {
    margin-bottom: 0.5rem;
    color: #6b7280;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.participant-view {
    min-height: 100vh;
}

.participant-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.question-card {
    height: 100%;
    border: 1px solid #e5e7eb;
    box-shadow: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.question-card:hover {
    box-shadow: 0 8px 20px rgba(10, 10, 10, 0.08);
}

.question-card.is-answered {
    opacity: 0.72;
    background-color: #fafafa;
}

.question-card.is-answered .content,
.question-card.is-answered .button,
.question-card.is-answered .tag {
    filter: saturate(0.8);
}

.question-card.is-focused {
    border-color: #3e8ed0;
    box-shadow: 0 0 0 2px rgba(62, 142, 208, 0.12);
    background-color: #f7fbff;
}

.question-actions {
    border-top: solid 1px #e5e7eb;
}

.reaction-buttons {
    gap: 0.5rem;
}

.reaction-buttons .button {
    border-radius: 9999px;
}

.reaction-buttons .button.is-selected {
    font-weight: 600;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.reaction-buttons .button:not(.is-selected) {
    color: #666666;
}

.reaction-panel {
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 768px) {
    .join-panel {
        padding: 1.25rem;
    }

    .participant-header {
        display: block;
    }
}
