/* _content/PHApp.Web/Components/Activities/PointReview/PointReviewActivity.razor.rz.scp.css */
/* Point Review Activity Container */
.point-review-activity-container[b-wwfgqkm0qh] {
    width: 100%;
    height: 100%;
    overflow: auto;
}

/* ===== BOARD STYLES ===== */
.point-review-board[b-wwfgqkm0qh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
}

.point-review-header[b-wwfgqkm0qh] {
    text-align: center;
    margin-bottom: 3rem;
}

.point-review-header h1[b-wwfgqkm0qh] {
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin: 0;
}

.point-review-rankings[b-wwfgqkm0qh] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    min-height: 500px;
}

.ranking-item[b-wwfgqkm0qh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.ranking-item.visible[b-wwfgqkm0qh] {
    opacity: 1;
    transform: translateY(0);
    animation: slideInUp-b-wwfgqkm0qh 0.6s ease forwards;
}

.ranking-item.hidden[b-wwfgqkm0qh] {
    opacity: 0;
    transform: translateY(50px);
}

@keyframes slideInUp-b-wwfgqkm0qh {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rank-badge[b-wwfgqkm0qh] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.rank-badge.rank-1[b-wwfgqkm0qh] {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    border: 3px solid #fff;
}

.rank-badge.rank-2[b-wwfgqkm0qh] {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
    color: #000;
}

.rank-badge.rank-3[b-wwfgqkm0qh] {
    background: linear-gradient(135deg, #cd7f32 0%, #e5a057 100%);
    color: #fff;
}

.participant-info[b-wwfgqkm0qh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.avatar-container[b-wwfgqkm0qh] {
    margin-bottom: 0.5rem;
}

.participant-details[b-wwfgqkm0qh] {
    text-align: center;
}

.participant-name[b-wwfgqkm0qh] {
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.score-container[b-wwfgqkm0qh] {
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.score-bar-wrapper[b-wwfgqkm0qh] {
    width: 100%;
    height: 400px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.score-bar[b-wwfgqkm0qh] {
    width: 100%;
    background: linear-gradient(to top, #00c9ff 0%, #92fe9d 100%);
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: growUp-b-wwfgqkm0qh 1s ease forwards;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
}

@keyframes growUp-b-wwfgqkm0qh {
    from {
        height: 0;
    }
}

.score-text[b-wwfgqkm0qh] {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.completion-message[b-wwfgqkm0qh] {
    margin-top: 2rem;
    text-align: center;
    animation: fadeInScale-b-wwfgqkm0qh 0.5s ease;
}

.completion-message h2[b-wwfgqkm0qh] {
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

@keyframes fadeInScale-b-wwfgqkm0qh {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.no-scores-message[b-wwfgqkm0qh] {
    text-align: center;
    padding: 3rem;
}

.no-scores-message p[b-wwfgqkm0qh] {
    font-size: 2rem;
    opacity: 0.8;
}

.waiting-message[b-wwfgqkm0qh] {
    text-align: center;
    padding: 3rem;
}

.waiting-message h2[b-wwfgqkm0qh] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.loading-spinner[b-wwfgqkm0qh] {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255,255,255,0.3);
    border-top: 6px solid white;
    border-radius: 50%;
    animation: spin-b-wwfgqkm0qh 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin-b-wwfgqkm0qh {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== MODERATOR STYLES ===== */
.point-review-moderator[b-wwfgqkm0qh] {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.moderator-header[b-wwfgqkm0qh] {
    text-align: center;
    margin-bottom: 2rem;
}

.moderator-header h2[b-wwfgqkm0qh] {
    font-size: 2rem;
    color: #667eea;
}

.animation-status[b-wwfgqkm0qh] {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.status-badge[b-wwfgqkm0qh] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.status-badge.animating[b-wwfgqkm0qh] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    animation: pulse-b-wwfgqkm0qh 2s ease infinite;
}

.status-badge.complete[b-wwfgqkm0qh] {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
    color: white;
}

@keyframes pulse-b-wwfgqkm0qh {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.standings-preview[b-wwfgqkm0qh] {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.standings-preview h3[b-wwfgqkm0qh] {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #333;
}

.rankings-list[b-wwfgqkm0qh] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ranking-preview[b-wwfgqkm0qh] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
}

.ranking-preview.current[b-wwfgqkm0qh] {
    background: #e3f2fd;
    border: 2px solid #667eea;
    animation: highlight-b-wwfgqkm0qh 1s ease infinite alternate;
}

@keyframes highlight-b-wwfgqkm0qh {
    from {
        background: #e3f2fd;
    }
    to {
        background: #bbdefb;
    }
}

.rank-badge-small[b-wwfgqkm0qh] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #667eea;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.avatar-preview[b-wwfgqkm0qh] {
    flex-shrink: 0;
}

.ranking-preview .name[b-wwfgqkm0qh] {
    flex: 1;
    font-weight: 500;
    color: #333;
}

.ranking-preview .score[b-wwfgqkm0qh] {
    font-weight: 600;
    color: #667eea;
}

.current-indicator[b-wwfgqkm0qh] {
    color: #667eea;
    font-weight: 600;
    animation: blink-b-wwfgqkm0qh 1s ease infinite;
}

@keyframes blink-b-wwfgqkm0qh {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.no-rankings[b-wwfgqkm0qh] {
    text-align: center;
    color: #666;
    padding: 1rem;
}

.moderator-controls[b-wwfgqkm0qh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.control-hint[b-wwfgqkm0qh] {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.info-box[b-wwfgqkm0qh] {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.info-box h3[b-wwfgqkm0qh] {
    margin-top: 0;
    color: #667eea;
}

.info-box p[b-wwfgqkm0qh] {
    color: #666;
    line-height: 1.6;
}

/* ===== PARTICIPANT STYLES ===== */
.point-review-participant[b-wwfgqkm0qh] {
    padding: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.participant-header[b-wwfgqkm0qh] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.participant-header h2[b-wwfgqkm0qh] {
    font-size: 2rem;
    color: #667eea;
    margin: 0;
}

.animation-indicator[b-wwfgqkm0qh] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 0.5rem;
}

.pulse-dot[b-wwfgqkm0qh] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    animation: pulse-dot-b-wwfgqkm0qh 1.5s ease infinite;
}

@keyframes pulse-dot-b-wwfgqkm0qh {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.standings-list[b-wwfgqkm0qh] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.standings-list .ranking-item[b-wwfgqkm0qh] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateX(-50px);
}

.standings-list .ranking-item.visible[b-wwfgqkm0qh] {
    opacity: 1;
    transform: translateX(0);
    animation: slideInLeft-b-wwfgqkm0qh 0.5s ease forwards;
}

@keyframes slideInLeft-b-wwfgqkm0qh {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.rank-section[b-wwfgqkm0qh] {
    flex-shrink: 0;
}

.standings-list .rank-badge[b-wwfgqkm0qh] {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
}

.participant-section[b-wwfgqkm0qh] {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatar-small[b-wwfgqkm0qh] {
    flex-shrink: 0;
}

.standings-list .participant-name[b-wwfgqkm0qh] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.score-section[b-wwfgqkm0qh] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.score-value[b-wwfgqkm0qh] {
    font-size: 1.75rem;
    font-weight: bold;
    color: #667eea;
}

.score-label[b-wwfgqkm0qh] {
    font-size: 0.9rem;
    color: #666;
}

.completion-banner[b-wwfgqkm0qh] {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
    color: white;
    border-radius: 0.5rem;
    animation: fadeInScale-b-wwfgqkm0qh 0.5s ease;
}

.completion-banner p[b-wwfgqkm0qh] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.point-review-participant .waiting-message[b-wwfgqkm0qh] {
    text-align: center;
    padding: 3rem 1rem;
}

.point-review-participant .waiting-message h3[b-wwfgqkm0qh] {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.point-review-participant .waiting-message p[b-wwfgqkm0qh] {
    color: #666;
    font-size: 1.1rem;
}

.loading-dots[b-wwfgqkm0qh] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.loading-dots span[b-wwfgqkm0qh] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #667eea;
    animation: bounce-b-wwfgqkm0qh 1.4s ease infinite;
}

.loading-dots span:nth-child(2)[b-wwfgqkm0qh] {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3)[b-wwfgqkm0qh] {
    animation-delay: 0.4s;
}

@keyframes bounce-b-wwfgqkm0qh {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .point-review-board[b-wwfgqkm0qh] {
        padding: 1rem;
    }

    .point-review-header h1[b-wwfgqkm0qh] {
        font-size: 2rem;
    }

    .point-review-rankings[b-wwfgqkm0qh] {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .score-bar-wrapper[b-wwfgqkm0qh] {
        height: 250px;
    }

    .score-container[b-wwfgqkm0qh] {
        width: 80px;
    }

    .score-text[b-wwfgqkm0qh] {
        font-size: 1.2rem;
    }

    .participant-name[b-wwfgqkm0qh] {
        font-size: 1.1rem;
    }

    .rank-badge[b-wwfgqkm0qh] {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}
/* _content/PHApp.Web/Components/Activities/QuickQuiz/QuickQuizActivity.razor.rz.scp.css */
.quick-quiz-activity-container[b-b6qthigdeo] {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.quiz-config-form[b-b6qthigdeo] {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-group[b-b6qthigdeo] {
    margin-bottom: 20px;
}

.form-group label[b-b6qthigdeo] {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-control[b-b6qthigdeo] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.character-count[b-b6qthigdeo] {
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.answers-section[b-b6qthigdeo] {
    margin: 20px 0;
}

.answer-row[b-b6qthigdeo] {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.answer-input[b-b6qthigdeo] {
    flex: 1;
}

.correct-checkbox[b-b6qthigdeo] {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.action-buttons[b-b6qthigdeo] {
    margin-top: 20px;
    text-align: center;
}

.btn[b-b6qthigdeo] {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary[b-b6qthigdeo] {
    background: #007bff;
    color: white;
}

.btn-primary:disabled[b-b6qthigdeo] {
    background: #ccc;
    cursor: not-allowed;
}

.btn-secondary[b-b6qthigdeo] {
    background: #6c757d;
    color: white;
}

.btn-danger[b-b6qthigdeo] {
    background: #dc3545;
    color: white;
}

.btn-lg[b-b6qthigdeo] {
    font-size: 18px;
    padding: 15px 30px;
}

.quiz-active-view[b-b6qthigdeo] {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.quiz-question-display[b-b6qthigdeo] {
    font-size: 18px;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
}

.timer[b-b6qthigdeo] {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
    margin: 20px 0;
}

.responses-info[b-b6qthigdeo] {
    margin: 15px 0;
    font-size: 16px;
}

.answered-list[b-b6qthigdeo] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.answered-badge[b-b6qthigdeo] {
    padding: 5px 15px;
    background: #28a745;
    color: white;
    border-radius: 20px;
    font-size: 14px;
}

.quiz-results-view[b-b6qthigdeo] {
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.correct-answer-display[b-b6qthigdeo] {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 16px;
}

.waiting-message[b-b6qthigdeo] {
    text-align: center;
    padding: 60px 20px;
}

.waiting-icon[b-b6qthigdeo] {
    font-size: 64px;
    margin-bottom: 20px;
}

.quiz-participant-view[b-b6qthigdeo] {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.quiz-answers[b-b6qthigdeo] {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.answer-button[b-b6qthigdeo] {
    padding: 20px;
    border: 2px solid #007bff;
    border-radius: 8px;
    background: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.answer-button:hover[b-b6qthigdeo] {
    background: #007bff;
    color: white;
    transform: translateX(5px);
}

.answer-submitted[b-b6qthigdeo] {
    text-align: center;
    padding: 40px 20px;
}

.personal-result[b-b6qthigdeo] {
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.personal-result.correct[b-b6qthigdeo] {
    background: #d4edda;
    border: 2px solid #28a745;
}

.personal-result.incorrect[b-b6qthigdeo] {
    background: #f8d7da;
    border: 2px solid #dc3545;
}

.result-icon[b-b6qthigdeo] {
    font-size: 48px;
    margin-bottom: 10px;
}

.personal-result.correct .result-icon[b-b6qthigdeo] {
    color: #28a745;
}

.personal-result.incorrect .result-icon[b-b6qthigdeo] {
    color: #dc3545;
}
/* _content/PHApp.Web/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-3i5o5798tl] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-3i5o5798tl] {
    flex: 1;
}

.app-header[b-3i5o5798tl] {
    background-color: #3a0647;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.app-header h1[b-3i5o5798tl] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.content[b-3i5o5798tl] {
    padding: 2rem;
}

#blazor-error-ui[b-3i5o5798tl] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-3i5o5798tl] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/PHApp.Web/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-5t8qeey4a0] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-5t8qeey4a0] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-5t8qeey4a0] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-5t8qeey4a0] {
    font-size: 1.1rem;
}

.bi[b-5t8qeey4a0] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill[b-5t8qeey4a0] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill[b-5t8qeey4a0] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested[b-5t8qeey4a0] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-5t8qeey4a0] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-5t8qeey4a0] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-5t8qeey4a0] {
        padding-bottom: 1rem;
    }

    .nav-item[b-5t8qeey4a0]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-5t8qeey4a0]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-5t8qeey4a0]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-5t8qeey4a0] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-5t8qeey4a0] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-5t8qeey4a0] {
        display: none;
    }

    .nav-scrollable[b-5t8qeey4a0] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/PHApp.Web/Components/Pages/RoomPage.razor.rz.scp.css */
.room-container[b-tvse6fv983] {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 3rem) 1rem;
}

.room-header[b-tvse6fv983] {
    text-align: center;
    margin-bottom: clamp(1rem, 3vw, 2rem);
    display: flex;
    justify-content: space-between;
}

.room-header h2[b-tvse6fv983] {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.room-key[b-tvse6fv983] {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: #cc00ff;
}

.room-key strong[b-tvse6fv983] {
    color: #cc00ff;
    font-size: clamp(1.2rem, 3.5vw, 1.5rem);
    letter-spacing: clamp(0.1rem, 0.5vw, 0.2rem);
}

.join-section[b-tvse6fv983] {
    max-width: 400px;
    margin: 0 auto;
    padding: clamp(1rem, 4vw, 2rem);
    background-color: #f5f5f5;
    border-radius: 8px;
}

.join-section h3[b-tvse6fv983] {
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-primary);
    font-size: clamp(1.1rem, 3vw, 1.25rem);
}

.join-buttons[b-tvse6fv983] {
    display: flex;
    gap: clamp(0.5rem, 2vw, 1rem);
    margin-top: clamp(1rem, 3vw, 1.5rem);
    flex-wrap: wrap;
}

.join-buttons > *[b-tvse6fv983] {
    flex: 1;
    min-width: 120px;
}

.form-group[b-tvse6fv983] {
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.form-group label[b-tvse6fv983] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.participant-name-input[b-tvse6fv983] {
    width: 100%;
    padding: clamp(0.5rem, 2vw, 0.75rem);
    font-size: clamp(1rem, 3vw, 1.125rem);
    border: 2px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}

.participant-name-input:focus[b-tvse6fv983] {
    outline: none;
    border-color: #3a0647;
}

.participants-section[b-tvse6fv983] {
    margin-top: clamp(1rem, 3vw, 2rem);
}

.section-header[b-tvse6fv983] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.section-header h3[b-tvse6fv983] {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(1.1rem, 3vw, 1.25rem);
}

.participants-list[b-tvse6fv983] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.participant-item[b-tvse6fv983] {
    padding: clamp(0.75rem, 2vw, 1rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    background-color: #f5f5f5;
    border-radius: 8px;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    min-height: 0;
}

.participant-info[b-tvse6fv983] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
}

.participant-name[b-tvse6fv983] {
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.participant-score[b-tvse6fv983] {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: #666;
    font-weight: 600;
}

.participant-actions[b-tvse6fv983] {
    display: flex;
    gap: clamp(0.25rem, 1vw, 0.5rem);
    align-items: center;
    flex-shrink: 0;
}

.btn-score-add[b-tvse6fv983],
.btn-score-subtract[b-tvse6fv983] {
    padding: clamp(0.4rem, 1.5vw, 0.5rem) clamp(0.6rem, 2vw, 1rem);
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    min-width: 0;
}

.btn-score-add[b-tvse6fv983] {
    background-color: #28a745;
    color: white;
}

.btn-score-add:hover[b-tvse6fv983] {
    background-color: #218838;
}

.btn-score-subtract[b-tvse6fv983] {
    background-color: #ffc107;
    color: var(--text-primary);
}

.btn-score-subtract:hover[b-tvse6fv983] {
    background-color: #e0a800;
}

.you-badge[b-tvse6fv983] {
    color: #cc00ff;
    font-weight: bold;
    margin-left: 0.5rem;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.moderator-badge[b-tvse6fv983] {
    color: #ff6b35;
    font-weight: bold;
    margin-left: 0.5rem;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.btn-remove[b-tvse6fv983] {
    padding: clamp(0.4rem, 1.5vw, 0.5rem) clamp(0.6rem, 2vw, 1rem);
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-remove:hover[b-tvse6fv983] {
    background-color: #c82333;
}

.btn[b-tvse6fv983] {
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 4vw, 2rem);
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    box-sizing: border-box;
}

.btn-primary[b-tvse6fv983] {
    background-color: #3a0647;
    color: white;
    border-color: #3a0647;
}

.btn-primary:hover:not(:disabled)[b-tvse6fv983] {
    background-color: #2a0437;
    border-color: #2a0437;
}

.btn-primary:disabled[b-tvse6fv983] {
    background-color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

.btn-secondary[b-tvse6fv983] {
    background-color: white;
    color: #cc00ff;
    border-color: #3a0647;
    padding: clamp(0.6rem, 2vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.btn-secondary:hover[b-tvse6fv983] {
    background-color: #f5f5f5;
}

.error-message[b-tvse6fv983] {
    text-align: center;
    padding: clamp(1rem, 4vw, 2rem);
}

.error-message h2[b-tvse6fv983] {
    color: #c62828;
    margin-bottom: 1rem;
    font-size: clamp(1.3rem, 4vw, 1.5rem);
}

.error-message-inline[b-tvse6fv983] {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background-color: #ffebee;
    color: #c62828;
    border-radius: 4px;
    border-left: 4px solid #c62828;
    font-size: 0.95rem;
}

.validation-spinner[b-tvse6fv983] {
    color: #666;
    font-size: 0.9rem;
    margin-left: 10px;
    display: inline-block;
    margin-top: 5px;
}

.validation-error[b-tvse6fv983] {
    color: #c62828;
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
    font-weight: 500;
}

.activity-selection-section[b-tvse6fv983] {
    margin-top: clamp(1rem, 3vw, 2rem);
    padding: clamp(1rem, 4vw, 2rem);
    background-color: #f5f5f5;
    border-radius: 8px;
}

.activity-selection-section h3[b-tvse6fv983] {
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-primary);
    text-align: center;
    font-size: clamp(1.1rem, 3vw, 1.25rem);
}

.activity-buttons[b-tvse6fv983] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
    gap: clamp(0.75rem, 2vw, 1rem);
}

.btn-activity[b-tvse6fv983] {
    padding: clamp(1rem, 3vw, 1.5rem) clamp(0.75rem, 2vw, 1rem);
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    background-color: white;
    color: #cc00ff;
    border: 2px solid #3a0647;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
}

.btn-activity:hover[b-tvse6fv983] {
    background-color: #3a0647;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.activity-content[b-tvse6fv983] {
    margin-top: clamp(1rem, 3vw, 2rem);
}

/* Tab Styles */
.tabs-container[b-tvse6fv983] {
    margin-top: clamp(1rem, 3vw, 2rem);
}

.tabs-header[b-tvse6fv983] {
    display: flex;
    gap: clamp(0.25rem, 1vw, 0.5rem);
    border-bottom: 2px solid #ddd;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    flex-wrap: wrap;
    align-items: center;
}

.tab-button[b-tvse6fv983] {
    padding: clamp(0.5rem, 2vw, 0.75rem) clamp(0.75rem, 3vw, 1.5rem);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-button:hover[b-tvse6fv983] {
    color: #cc00ff;
    background-color: #f5f5f5;
}

.tab-button.active[b-tvse6fv983] {
    color: #cc00ff;
    border-bottom-color: #3a0647;
    font-weight: 600;
}

.leave-btn[b-tvse6fv983] {
    margin-left: auto;
}

.tab-content[b-tvse6fv983] {
    min-height: clamp(300px, 50vh, 400px);
}

.tab-panel[b-tvse6fv983] {
    animation: fadeIn-b-tvse6fv983 0.3s ease-in;
}

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

.waiting-message[b-tvse6fv983] {
    text-align: center;
    padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 2rem);
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #ccc;
}

.waiting-icon[b-tvse6fv983] {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 1rem;
    animation: pulse-b-tvse6fv983 2s ease-in-out infinite;
}

@keyframes pulse-b-tvse6fv983 {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.waiting-message h3[b-tvse6fv983] {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: clamp(1.1rem, 3vw, 1.25rem);
}

.waiting-message p[b-tvse6fv983] {
    color: #666;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.4;
}

.btn-activity.selected[b-tvse6fv983] {
    background-color: #3a0647;
    color: white;
    border-color: #3a0647;
}

/* Leave Tab Styles */
.leave-tab[b-tvse6fv983] {
    margin-left: auto;
    color: var(--text-tertiary) !important;
    border-color: transparent !important;
}

.leave-tab:hover[b-tvse6fv983] {
    color: #d32f2f !important;
    background-color: #ffebee !important;
}

.leave-tab.active[b-tvse6fv983] {
    color: #d32f2f !important;
    border-bottom-color: #d32f2f !important;
    background-color: #ffebee !important;
}

.leave-confirmation-section[b-tvse6fv983] {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 400px;
    padding-top: clamp(2rem, 5vw, 4rem);
}

.leave-confirmation-dialog[b-tvse6fv983] {
    background: white;
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 100%;
    border: 1px solid #e0e0e0;
}

.leave-icon[b-tvse6fv983] {
    font-size: clamp(3rem, 8vw, 4rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    color: #d32f2f;
}

.leave-confirmation-dialog h3[b-tvse6fv983] {
    color: var(--text-primary);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.2;
}

.leave-warning[b-tvse6fv983] {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.5;
    margin-bottom: clamp(2rem, 5vw, 2.5rem);
    padding: clamp(1rem, 3vw, 1.5rem);
    background: #fff3e0;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
}

.leave-actions[b-tvse6fv983] {
    display: flex;
    gap: clamp(1rem, 3vw, 1.5rem);
    justify-content: center;
    flex-wrap: wrap;
}

.cancel-leave-btn[b-tvse6fv983],
.confirm-leave-btn[b-tvse6fv983] {
    min-width: 120px;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.25rem, 3vw, 2rem) !important;
    font-size: clamp(0.9rem, 2vw, 1rem) !important;
    font-weight: 600 !important;
}

.confirm-leave-btn[b-tvse6fv983] {
    background-color: #d32f2f !important;
    border-color: #d32f2f !important;
}

.confirm-leave-btn:hover[b-tvse6fv983] {
    background-color: #b71c1c !important;
    border-color: #b71c1c !important;
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    .room-container[b-tvse6fv983] {
        padding: 1rem 0.75rem;
    }
    
    .join-buttons[b-tvse6fv983] {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .join-buttons > *[b-tvse6fv983] {
        min-width: 0;
    }
    
    .participant-item[b-tvse6fv983] {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .participant-actions[b-tvse6fv983] {
        flex-wrap: wrap;
        width: 100%;
        justify-content: flex-end;
    }
    
    .activity-buttons[b-tvse6fv983] {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .tabs-header[b-tvse6fv983] {
        overflow-x: auto;
        scrollbar-width: thin;
    }
    
    .tab-content[b-tvse6fv983] {
        min-height: 250px;
    }
    
    .leave-confirmation-section[b-tvse6fv983] {
        padding-top: 2rem;
        min-height: 300px;
    }
    
    .leave-confirmation-dialog[b-tvse6fv983] {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .leave-actions[b-tvse6fv983] {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .room-container[b-tvse6fv983] {
        padding: 0.75rem 0.5rem;
    }
    
    .activity-buttons[b-tvse6fv983] {
        grid-template-columns: 1fr;
    }
    
    .section-header[b-tvse6fv983] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .participant-item[b-tvse6fv983] {
        padding: 0.75rem;
    }
    
    .participant-actions[b-tvse6fv983] {
        margin-top: 0.5rem;
    }
    
    .leave-confirmation-section[b-tvse6fv983] {
        padding-top: 1.5rem;
        min-height: 250px;
    }
    
    .leave-confirmation-dialog[b-tvse6fv983] {
        padding: 1.5rem 1rem;
        margin: 0 0.25rem;
    }
    
    .leave-actions[b-tvse6fv983] {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cancel-leave-btn[b-tvse6fv983],
    .confirm-leave-btn[b-tvse6fv983] {
        width: 100%;
        min-width: unset;
    }
}
/* _content/PHApp.Web/Components/UI/AvatarSelector.razor.rz.scp.css */
/* Avatar Selector Container */
.avatar-selector[b-kt81fmmrmb] {
    padding: clamp(1rem, 3vw, 20px);
    background: #f9f9f9;
    border-radius: 8px;
    margin: clamp(1rem, 3vw, 20px) 0;
}

.avatar-selector h3[b-kt81fmmrmb] {
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    margin-bottom: clamp(0.75rem, 2vw, 15px);
    color: var(--text-primary);
    line-height: 1.2;
}

/* Error Message */
.error-message[b-kt81fmmrmb] {
    padding: clamp(0.5rem, 2vw, 10px);
    margin-bottom: clamp(0.75rem, 2vw, 15px);
    background-color: #ffebee;
    color: #c62828;
    border-radius: 4px;
    text-align: center;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    line-height: 1.3;
}

/* Category Tabs */
.category-tabs[b-kt81fmmrmb] {
    display: flex;
    gap: clamp(0.5rem, 1.5vw, 8px);
    margin-bottom: clamp(0.75rem, 2vw, 15px);
    flex-wrap: wrap;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 4px;
}

.category-tab[b-kt81fmmrmb] {
    padding: clamp(0.5rem, 1.5vw, 8px) clamp(0.75rem, 3vw, 16px);
    background: white;
    border: 2px solid #3a0647;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
    touch-action: manipulation;
}

.category-tab:hover[b-kt81fmmrmb] {
    background: #f0e6f5;
}

.category-tab.active[b-kt81fmmrmb] {
    background: #3a0647;
    color: white;
}

/* Emoji Grid */
.emoji-grid[b-kt81fmmrmb] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(clamp(50px, 12vw, 60px), 1fr));
    gap: clamp(0.5rem, 2vw, 10px);
    margin-bottom: clamp(1rem, 3vw, 20px);
    max-height: clamp(250px, 40vh, 300px);
    overflow-y: auto;
    padding: clamp(0.5rem, 2vw, 10px);
    background: white;
    border-radius: 6px;
    scroll-behavior: smooth;
}

/* Emoji Buttons */
.emoji-button[b-kt81fmmrmb] {
    width: clamp(50px, 12vw, 60px);
    height: clamp(50px, 12vw, 60px);
    min-height: 44px;
    min-width: 44px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s;
    padding: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.emoji-button:hover:not(:disabled)[b-kt81fmmrmb] {
    border-color: #3a0647;
    transform: scale(1.1);
}

.emoji-button.selected[b-kt81fmmrmb] {
    border-color: #3a0647;
    background: #f0e6f5;
    border-width: 3px;
}

.emoji-button.taken[b-kt81fmmrmb] {
    opacity: 0.3;
    cursor: not-allowed;
    background: #f5f5f5;
}

.emoji-button .emoji[b-kt81fmmrmb] {
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1;
    user-select: none;
}

.emoji-button .checkmark[b-kt81fmmrmb] {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    width: clamp(16px, 4vw, 20px);
    height: clamp(16px, 4vw, 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(10px, 2.5vw, 12px);
    font-weight: bold;
}

/* Avatar Preview */
.avatar-preview[b-kt81fmmrmb] {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 3vw, 15px);
    padding: clamp(0.75rem, 3vw, 15px);
    background: white;
    border-radius: 8px;
    border: 2px solid #3a0647;
    flex-wrap: wrap;
}

.preview-label[b-kt81fmmrmb] {
    font-weight: 600;
    color: var(--text-primary);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.preview-emoji[b-kt81fmmrmb] {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1;
    user-select: none;
}

.btn-clear[b-kt81fmmrmb] {
    margin-left: auto;
    padding: clamp(0.5rem, 2vw, 8px) clamp(0.75rem, 3vw, 16px);
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    min-height: 44px;
    touch-action: manipulation;
    white-space: nowrap;
}

.btn-clear:hover[b-kt81fmmrmb] {
    background: #c82333;
}

/* Scrollbar styling for emoji grid */
.emoji-grid[b-kt81fmmrmb]::-webkit-scrollbar {
    width: clamp(6px, 1.5vw, 8px);
}

.emoji-grid[b-kt81fmmrmb]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.emoji-grid[b-kt81fmmrmb]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.emoji-grid[b-kt81fmmrmb]::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.category-tabs[b-kt81fmmrmb]::-webkit-scrollbar {
    height: 4px;
}

.category-tabs[b-kt81fmmrmb]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.category-tabs[b-kt81fmmrmb]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .avatar-selector[b-kt81fmmrmb] {
        padding: 1rem 0.75rem;
        margin: 1rem 0;
    }
    
    .emoji-grid[b-kt81fmmrmb] {
        grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
        gap: 0.5rem;
        padding: 0.75rem;
        max-height: 35vh;
    }
    
    .emoji-button[b-kt81fmmrmb] {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }
    
    .emoji-button .emoji[b-kt81fmmrmb] {
        font-size: 1.5rem;
    }
    
    .category-tabs[b-kt81fmmrmb] {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .category-tab[b-kt81fmmrmb] {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        min-height: 44px;
    }
    
    .avatar-preview[b-kt81fmmrmb] {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .btn-clear[b-kt81fmmrmb] {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .avatar-selector[b-kt81fmmrmb] {
        padding: 0.75rem 0.5rem;
    }
    
    .emoji-grid[b-kt81fmmrmb] {
        grid-template-columns: repeat(auto-fill, minmax(44px, 1fr));
        gap: 0.4rem;
        padding: 0.5rem;
        max-height: 30vh;
    }
    
    .emoji-button[b-kt81fmmrmb] {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        border-radius: 6px;
    }
    
    .emoji-button .emoji[b-kt81fmmrmb] {
        font-size: 1.3rem;
    }
    
    .emoji-button .checkmark[b-kt81fmmrmb] {
        width: 14px;
        height: 14px;
        font-size: 9px;
        top: 1px;
        right: 1px;
    }
    
    .category-tabs[b-kt81fmmrmb] {
        gap: 0.4rem;
    }
    
    .category-tab[b-kt81fmmrmb] {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        border-radius: 4px;
    }
    
    .avatar-preview[b-kt81fmmrmb] {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .preview-emoji[b-kt81fmmrmb] {
        font-size: 2rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .emoji-button:hover:not(:disabled)[b-kt81fmmrmb] {
        transform: none;
        border-color: #3a0647;
    }
    
    .emoji-button:active[b-kt81fmmrmb] {
        transform: scale(0.95);
        background: #f0f0f0;
    }
    
    .category-tab:hover[b-kt81fmmrmb] {
        background: white;
    }
    
    .category-tab:active[b-kt81fmmrmb] {
        background: #f0e6f5;
    }
}
