/* /Components/Admin/FolderAdminDashboard.razor.rz.scp.css */
.folder-admin-dashboard[b-lhgnioi2oo] {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-header[b-lhgnioi2oo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-header h2[b-lhgnioi2oo] {
    margin: 0;
    color: #333;
    font-size: 1.8rem;
}

.btn-refresh[b-lhgnioi2oo] {
    padding: 0.75rem 1.5rem;
    background: #4ECDC4;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-refresh:hover[b-lhgnioi2oo] {
    background: #45B7D1;
}

.loading-state[b-lhgnioi2oo],
.error-state[b-lhgnioi2oo] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 1rem;
}

.spinner[b-lhgnioi2oo] {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4ECDC4;
    border-radius: 50%;
    animation: spin-b-lhgnioi2oo 1s linear infinite;
}

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

.error-state[b-lhgnioi2oo] {
    background: #fff0f0;
    border-radius: 12px;
}

.error-icon[b-lhgnioi2oo] {
    font-size: 3rem;
}

.btn-retry[b-lhgnioi2oo] {
    padding: 0.5rem 1.5rem;
    background: #FF4757;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.dashboard-summary[b-lhgnioi2oo] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.summary-card[b-lhgnioi2oo] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.summary-card.total[b-lhgnioi2oo] {
    border-left: 4px solid #4ECDC4;
}

.summary-card.created[b-lhgnioi2oo] {
    border-left: 4px solid #2ED573;
}

.summary-card.pending[b-lhgnioi2oo] {
    border-left: 4px solid #FFA502;
}

.summary-card.files[b-lhgnioi2oo] {
    border-left: 4px solid #5F27CD;
}

.card-icon[b-lhgnioi2oo] {
    font-size: 2.5rem;
}

.card-content h3[b-lhgnioi2oo] {
    margin: 0;
    font-size: 2rem;
    color: #333;
}

.card-content p[b-lhgnioi2oo] {
    margin: 0.25rem 0 0 0;
    color: #666;
    font-size: 0.9rem;
}

.alert-section[b-lhgnioi2oo] {
    background: #fff8f0;
    border: 2px solid #FFA502;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.alert-icon[b-lhgnioi2oo] {
    font-size: 2rem;
}

.alert-content[b-lhgnioi2oo] {
    flex: 1;
}

.alert-content strong[b-lhgnioi2oo] {
    display: block;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.25rem;
}

.alert-content p[b-lhgnioi2oo] {
    margin: 0;
    color: #666;
}

.btn-view-pending[b-lhgnioi2oo] {
    padding: 0.75rem 1.5rem;
    background: #FFA502;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
}

.recent-activity[b-lhgnioi2oo] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.recent-activity h3[b-lhgnioi2oo] {
    margin: 0 0 1rem 0;
    color: #333;
}

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

.activity-item[b-lhgnioi2oo] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.activity-icon[b-lhgnioi2oo] {
    font-size: 1.5rem;
}

.activity-info[b-lhgnioi2oo] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.activity-info strong[b-lhgnioi2oo] {
    color: #333;
    font-size: 1rem;
}

.activity-info span[b-lhgnioi2oo] {
    color: #666;
    font-size: 0.85rem;
}

.timestamp[b-lhgnioi2oo] {
    color: #999 !important;
    font-size: 0.8rem !important;
}

.btn-open[b-lhgnioi2oo] {
    padding: 0.5rem 1rem;
    background: #4ECDC4;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
}

.no-activity[b-lhgnioi2oo] {
    text-align: center;
    color: #999;
    padding: 2rem;
}

.dashboard-footer[b-lhgnioi2oo] {
    text-align: center;
    padding: 1rem;
    color: #999;
    font-size: 0.9rem;
}


/* /Components/Auth/DomainValidationMessage.razor.rz.scp.css */
/* Domain Validation Message Component Styles */

.domain-validation-message[b-2r9u5l5bj7] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid;
    font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    position: relative;
    animation: slideIn-b-2r9u5l5bj7 0.3s ease-out;
}

@keyframes slideIn-b-2r9u5l5bj7 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Message Types */
.message-info[b-2r9u5l5bj7] {
    background-color: #E3F2FD;
    border-color: #90CAF9;
    color: #0D47A1;
}

.message-success[b-2r9u5l5bj7] {
    background-color: #E8F5E9;
    border-color: #81C784;
    color: #1B5E20;
}

.message-warning[b-2r9u5l5bj7] {
    background-color: #FFF3E0;
    border-color: #FFB74D;
    color: #E65100;
}

.message-error[b-2r9u5l5bj7] {
    background-color: #FFEBEE;
    border-color: #EF5350;
    color: #B71C1C;
}

/* Message Icon */
.message-icon[b-2r9u5l5bj7] {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.message-icon svg[b-2r9u5l5bj7] {
    width: 100%;
    height: 100%;
}

/* Message Content */
.message-content[b-2r9u5l5bj7] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.message-title[b-2r9u5l5bj7] {
    font-weight: 600;
    font-size: 15px;
    margin: 0;
    line-height: 1.4;
}

.message-text[b-2r9u5l5bj7] {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Guidance Section */
.message-guidance[b-2r9u5l5bj7] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    font-size: 13px;
    font-style: italic;
    margin-top: 4px;
}

.guidance-icon[b-2r9u5l5bj7] {
    flex-shrink: 0;
    font-size: 16px;
}

/* Domain and Email Examples */
.domain-example[b-2r9u5l5bj7],
.email-example[b-2r9u5l5bj7] {
    font-size: 13px;
    margin-top: 4px;
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
}

.domain-code[b-2r9u5l5bj7] {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    padding: 2px 6px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    white-space: nowrap;
}

.message-info .domain-code[b-2r9u5l5bj7] {
    color: #0D47A1;
}

.message-success .domain-code[b-2r9u5l5bj7] {
    color: #1B5E20;
}

.message-warning .domain-code[b-2r9u5l5bj7] {
    color: #E65100;
}

.message-error .domain-code[b-2r9u5l5bj7] {
    color: #B71C1C;
}

/* Action Button */
.message-action-button[b-2r9u5l5bj7] {
    margin-top: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.message-info .message-action-button[b-2r9u5l5bj7] {
    background-color: #1976D2;
    color: white;
}

.message-info .message-action-button:hover[b-2r9u5l5bj7] {
    background-color: #1565C0;
}

.message-success .message-action-button[b-2r9u5l5bj7] {
    background-color: #388E3C;
    color: white;
}

.message-success .message-action-button:hover[b-2r9u5l5bj7] {
    background-color: #2E7D32;
}

.message-warning .message-action-button[b-2r9u5l5bj7] {
    background-color: #F57C00;
    color: white;
}

.message-warning .message-action-button:hover[b-2r9u5l5bj7] {
    background-color: #EF6C00;
}

.message-error .message-action-button[b-2r9u5l5bj7] {
    background-color: #D32F2F;
    color: white;
}

.message-error .message-action-button:hover[b-2r9u5l5bj7] {
    background-color: #C62828;
}

.message-action-button:active[b-2r9u5l5bj7] {
    transform: scale(0.98);
}

.message-action-button:focus-visible[b-2r9u5l5bj7] {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* Dismiss Button */
.message-dismiss[b-2r9u5l5bj7] {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    padding: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.message-dismiss svg[b-2r9u5l5bj7] {
    width: 100%;
    height: 100%;
}

.message-dismiss:hover[b-2r9u5l5bj7] {
    background-color: rgba(0, 0, 0, 0.1);
}

.message-dismiss:active[b-2r9u5l5bj7] {
    background-color: rgba(0, 0, 0, 0.15);
}

.message-dismiss:focus-visible[b-2r9u5l5bj7] {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* When dismissible, add padding to content for the dismiss button */
.domain-validation-message:has(.message-dismiss)[b-2r9u5l5bj7] {
    padding-right: 48px;
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .domain-validation-message[b-2r9u5l5bj7] {
        padding: 12px;
        gap: 10px;
    }

    .domain-validation-message:has(.message-dismiss)[b-2r9u5l5bj7] {
        padding-right: 40px;
    }

    .message-icon[b-2r9u5l5bj7] {
        width: 20px;
        height: 20px;
    }

    .message-title[b-2r9u5l5bj7] {
        font-size: 14px;
    }

    .message-text[b-2r9u5l5bj7] {
        font-size: 13px;
    }

    .message-guidance[b-2r9u5l5bj7],
    .domain-example[b-2r9u5l5bj7],
    .email-example[b-2r9u5l5bj7] {
        font-size: 12px;
        padding: 6px 10px;
    }

    .domain-code[b-2r9u5l5bj7] {
        font-size: 12px;
        padding: 2px 4px;
    }

    .message-action-button[b-2r9u5l5bj7] {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .message-info[b-2r9u5l5bj7] {
        background-color: #0D47A1;
        border-color: #1976D2;
        color: #BBDEFB;
    }

    .message-success[b-2r9u5l5bj7] {
        background-color: #1B5E20;
        border-color: #388E3C;
        color: #C8E6C9;
    }

    .message-warning[b-2r9u5l5bj7] {
        background-color: #E65100;
        border-color: #F57C00;
        color: #FFE0B2;
    }

    .message-error[b-2r9u5l5bj7] {
        background-color: #B71C1C;
        border-color: #D32F2F;
        color: #FFCDD2;
    }

    .message-guidance[b-2r9u5l5bj7],
    .domain-example[b-2r9u5l5bj7],
    .email-example[b-2r9u5l5bj7] {
        background-color: rgba(0, 0, 0, 0.3);
    }

    .domain-code[b-2r9u5l5bj7] {
        background-color: rgba(255, 255, 255, 0.2);
    }

    .message-dismiss:hover[b-2r9u5l5bj7] {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .message-dismiss:active[b-2r9u5l5bj7] {
        background-color: rgba(255, 255, 255, 0.15);
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .domain-validation-message[b-2r9u5l5bj7] {
        border-width: 2px;
    }

    .message-action-button[b-2r9u5l5bj7] {
        border: 2px solid currentColor;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .domain-validation-message[b-2r9u5l5bj7] {
        animation: none;
    }

    .message-action-button:active[b-2r9u5l5bj7] {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .domain-validation-message[b-2r9u5l5bj7] {
        break-inside: avoid;
        page-break-inside: avoid;
        box-shadow: none;
    }

    .message-action-button[b-2r9u5l5bj7],
    .message-dismiss[b-2r9u5l5bj7] {
        display: none;
    }
}

/* /Components/Auth/GoogleSignInButton.razor.rz.scp.css */
/* Google Sign-In Button Component Styles */

.google-signin-container[b-bkuitd674n] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

/* Button Base Styles - Following Google's Brand Guidelines */
.google-signin-button[b-bkuitd674n] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 24px;
    min-width: 240px;
    max-width: 400px;
    width: 100%;
    height: 48px;
    background-color: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-family: 'Roboto', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #3c4043;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.30), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

/* Hover State */
.google-signin-button:hover:not(:disabled)[b-bkuitd674n] {
    background-color: #f8f9fa;
    border-color: #d2d4d8;
    box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.30), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
}

/* Active/Pressed State */
.google-signin-button:active:not(:disabled)[b-bkuitd674n] {
    background-color: #f1f3f4;
    border-color: #5f6368;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.30), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

/* Focus State - Accessibility */
.google-signin-button:focus-visible[b-bkuitd674n] {
    outline: 2px solid #4285f4;
    outline-offset: 2px;
}

/* Disabled State */
.google-signin-button:disabled[b-bkuitd674n] {
    background-color: #f1f3f4;
    border-color: #dadce0;
    color: #80868b;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.6;
}

/* Loading State */
.google-signin-button.loading[b-bkuitd674n] {
    background-color: #f8f9fa;
    cursor: wait;
}

/* Error State */
.google-signin-button.error[b-bkuitd674n] {
    border-color: #ea4335;
    background-color: #fef7f7;
}

.google-signin-button.error:hover:not(:disabled)[b-bkuitd674n] {
    background-color: #fef0f0;
}

/* Google Icon */
.google-icon[b-bkuitd674n] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.google-icon svg[b-bkuitd674n] {
    width: 20px;
    height: 20px;
}

/* Button Text */
.button-text[b-bkuitd674n] {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.25px;
    line-height: 20px;
    white-space: nowrap;
}

/* Loading Spinner */
.loading-spinner[b-bkuitd674n] {
    width: 20px;
    height: 20px;
    border: 2px solid #dadce0;
    border-top-color: #4285f4;
    border-radius: 50%;
    animation: spin-b-bkuitd674n 0.8s linear infinite;
}

@keyframes spin-b-bkuitd674n {
    to {
        transform: rotate(360deg);
    }
}

/* Workspace Message */
.workspace-message[b-bkuitd674n] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 14px;
    color: #5f6368;
    font-family: 'Roboto', 'Arial', sans-serif;
    text-align: center;
}

.workspace-icon[b-bkuitd674n] {
    width: 16px;
    height: 16px;
    color: #1a73e8;
    flex-shrink: 0;
}

/* Error Container */
.error-container[b-bkuitd674n] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.error-message[b-bkuitd674n] {
    margin: 0;
    font-size: 14px;
    color: #d93025;
    text-align: center;
    font-family: 'Roboto', 'Arial', sans-serif;
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .google-signin-button[b-bkuitd674n] {
        min-width: 200px;
        padding: 10px 20px;
        height: 44px;
        font-size: 14px;
    }

    .button-text[b-bkuitd674n] {
        font-size: 14px;
    }

    .google-icon svg[b-bkuitd674n] {
        width: 18px;
        height: 18px;
    }

    .workspace-message[b-bkuitd674n] {
        font-size: 13px;
    }
}

/* Tablet */
@media (min-width: 481px) and (max-width: 768px) {
    .google-signin-button[b-bkuitd674n] {
        min-width: 220px;
    }
}

/* Large Screens */
@media (min-width: 1200px) {
    .google-signin-button[b-bkuitd674n] {
        max-width: 360px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .google-signin-button[b-bkuitd674n] {
        background-color: #2d2e30;
        border-color: #5f6368;
        color: #e8eaed;
    }

    .google-signin-button:hover:not(:disabled)[b-bkuitd674n] {
        background-color: #35363a;
        border-color: #70757a;
    }

    .google-signin-button:active:not(:disabled)[b-bkuitd674n] {
        background-color: #3c4043;
    }

    .google-signin-button:disabled[b-bkuitd674n] {
        background-color: #3c4043;
        color: #9aa0a6;
    }

    .workspace-message[b-bkuitd674n] {
        color: #9aa0a6;
    }

    .error-message[b-bkuitd674n] {
        color: #f28b82;
    }
}

/* High Contrast Mode - Accessibility */
@media (prefers-contrast: high) {
    .google-signin-button[b-bkuitd674n] {
        border-width: 2px;
        font-weight: 600;
    }

    .google-signin-button:focus-visible[b-bkuitd674n] {
        outline-width: 3px;
    }
}

/* Reduced Motion - Accessibility */
@media (prefers-reduced-motion: reduce) {
    .google-signin-button[b-bkuitd674n] {
        transition: none;
    }

    .loading-spinner[b-bkuitd674n] {
        animation: none;
        border-top-color: #4285f4;
        border-right-color: #4285f4;
    }
}

/* /Components/Auth/UserProfileMenu.razor.rz.scp.css */
/* User Profile Menu Component */

.user-profile-menu[b-0tscdhhbrb] {
    position: relative;
    display: inline-block;
}

/* Profile Trigger Button */
.profile-trigger[b-0tscdhhbrb] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: white;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.profile-trigger:hover[b-0tscdhhbrb] {
    background: #F5F5F5;
    border-color: #BDBDBD;
}

.profile-trigger:focus-visible[b-0tscdhhbrb] {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Avatar */
.profile-avatar[b-0tscdhhbrb] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-image[b-0tscdhhbrb] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder[b-0tscdhhbrb] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    font-size: 16px;
}

/* Profile Info */
.profile-info[b-0tscdhhbrb] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.profile-name[b-0tscdhhbrb] {
    font-size: 14px;
    font-weight: 600;
    color: #2C3E50;
    line-height: 1.2;
}

.profile-role[b-0tscdhhbrb] {
    font-size: 12px;
    color: #7F8C8D;
    line-height: 1.2;
}

/* Dropdown Icon */
.dropdown-icon[b-0tscdhhbrb] {
    width: 20px;
    height: 20px;
    color: #7F8C8D;
    transition: transform 0.2s ease;
}

.dropdown-icon.open[b-0tscdhhbrb] {
    transform: rotate(180deg);
}

/* Profile Dropdown */
.profile-dropdown[b-0tscdhhbrb] {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 300px;
    background: white;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    animation: dropdownSlide-b-0tscdhhbrb 0.2s ease-out;
}

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

.dropdown-section[b-0tscdhhbrb] {
    padding: 16px;
    border-bottom: 1px solid #F0F0F0;
}

.dropdown-section:last-child[b-0tscdhhbrb] {
    border-bottom: none;
}

/* User Info Section */
.user-info .info-row[b-0tscdhhbrb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.user-info .info-row:last-child[b-0tscdhhbrb] {
    margin-bottom: 0;
}

.info-label[b-0tscdhhbrb] {
    font-size: 12px;
    color: #7F8C8D;
    font-weight: 500;
}

.info-value[b-0tscdhhbrb] {
    font-size: 13px;
    color: #2C3E50;
    font-weight: 500;
}

/* Role Badge */
.role-badge[b-0tscdhhbrb] {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.role-staff[b-0tscdhhbrb] {
    background: #E3F2FD;
    color: #1976D2;
}

.role-curator[b-0tscdhhbrb] {
    background: #F3E5F5;
    color: #7B1FA2;
}

.role-admin[b-0tscdhhbrb] {
    background: #FFEBEE;
    color: #C62828;
}

/* Session Status */
.session-indicator[b-0tscdhhbrb] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}

.status-dot[b-0tscdhhbrb] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.session-indicator.active[b-0tscdhhbrb] {
    color: #2E7D32;
}

.session-indicator.active .status-dot[b-0tscdhhbrb] {
    background: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.session-indicator.inactive[b-0tscdhhbrb] {
    color: #D32F2F;
}

.session-indicator.inactive .status-dot[b-0tscdhhbrb] {
    background: #F44336;
}

.last-login[b-0tscdhhbrb] {
    font-size: 12px;
    color: #9E9E9E;
}

/* Timeout Warning */
.timeout-warning[b-0tscdhhbrb] {
    display: flex;
    gap: 12px;
    background: #FFF3E0;
    border: 1px solid #FFB74D;
    border-radius: 6px;
    padding: 12px !important;
}

.warning-icon[b-0tscdhhbrb] {
    width: 20px;
    height: 20px;
    color: #E65100;
    flex-shrink: 0;
}

.warning-content strong[b-0tscdhhbrb] {
    display: block;
    font-size: 13px;
    color: #E65100;
    margin-bottom: 4px;
}

.warning-content p[b-0tscdhhbrb] {
    font-size: 12px;
    color: #F57C00;
    margin: 0;
}

/* Menu Actions */
.menu-actions[b-0tscdhhbrb] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-action[b-0tscdhhbrb] {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: left;
}

.menu-action:hover[b-0tscdhhbrb] {
    background: #F5F5F5;
}

.menu-action:focus-visible[b-0tscdhhbrb] {
    outline: 2px solid #667eea;
    outline-offset: -2px;
}

.action-icon[b-0tscdhhbrb] {
    width: 20px;
    height: 20px;
    color: #7F8C8D;
}

.menu-action span[b-0tscdhhbrb] {
    font-size: 14px;
    color: #2C3E50;
    font-weight: 500;
}

.logout-action[b-0tscdhhbrb] {
    color: #D32F2F;
}

.logout-action .action-icon[b-0tscdhhbrb] {
    color: #D32F2F;
}

.logout-action span[b-0tscdhhbrb] {
    color: #D32F2F;
}

.logout-action:hover[b-0tscdhhbrb] {
    background: #FFEBEE;
}

/* Sign In Button */
.signin-button[b-0tscdhhbrb] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.signin-button:hover[b-0tscdhhbrb] {
    background: #764ba2;
}

.signin-button:focus-visible[b-0tscdhhbrb] {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.signin-icon[b-0tscdhhbrb] {
    width: 18px;
    height: 18px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .profile-info[b-0tscdhhbrb] {
        display: none;
    }

    .profile-trigger[b-0tscdhhbrb] {
        padding: 6px;
    }

    .profile-dropdown[b-0tscdhhbrb] {
        min-width: 280px;
        right: -8px;
    }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    .profile-trigger[b-0tscdhhbrb] {
        background: #2C3E50;
        border-color: #34495E;
    }

    .profile-trigger:hover[b-0tscdhhbrb] {
        background: #34495E;
    }

    .profile-name[b-0tscdhhbrb] {
        color: #ECF0F1;
    }

    .profile-role[b-0tscdhhbrb] {
        color: #BDC3C7;
    }

    .profile-dropdown[b-0tscdhhbrb] {
        background: #2C3E50;
        border-color: #34495E;
    }

    .dropdown-section[b-0tscdhhbrb] {
        border-bottom-color: #34495E;
    }

    .info-label[b-0tscdhhbrb] {
        color: #95A5A6;
    }

    .info-value[b-0tscdhhbrb] {
        color: #ECF0F1;
    }

    .menu-action span[b-0tscdhhbrb] {
        color: #ECF0F1;
    }

    .menu-action:hover[b-0tscdhhbrb] {
        background: #34495E;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .profile-dropdown[b-0tscdhhbrb],
    .dropdown-icon[b-0tscdhhbrb] {
        animation: none;
        transition: none;
    }
}

/* /Components/Curation/ActionItemReview.razor.rz.scp.css */
.action-item-review[b-7txq18hcuk] {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.review-header[b-7txq18hcuk] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #dee2e6;
}

.review-header h4[b-7txq18hcuk] {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #212529;
}

.review-stats[b-7txq18hcuk] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.stat-item[b-7txq18hcuk] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
}

.stat-item.valid[b-7txq18hcuk] {
    background: #d4edda;
    color: #155724;
}

.stat-item.invalid[b-7txq18hcuk] {
    background: #fff3cd;
    color: #664d03;
}

.stat-breakdown[b-7txq18hcuk] {
    display: flex;
    gap: 0.5rem;
}

.stat-badge[b-7txq18hcuk] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.stat-badge.stat-high[b-7txq18hcuk] {
    background: #f8d7da;
    color: #721c24;
}

.stat-badge.stat-medium[b-7txq18hcuk] {
    background: #fff3cd;
    color: #664d03;
}

.stat-badge.stat-low[b-7txq18hcuk] {
    background: #cfe2ff;
    color: #084298;
}

.locked-message[b-7txq18hcuk] {
    background: #f8d7da;
    border: 1px solid #f5c2c7;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.locked-message i[b-7txq18hcuk] {
    font-size: 1.5rem;
    color: #842029;
    margin-top: 0.125rem;
}

.locked-message strong[b-7txq18hcuk] {
    display: block;
    color: #842029;
    margin-bottom: 0.25rem;
}

.locked-message p[b-7txq18hcuk] {
    margin: 0;
    color: #58151c;
    font-size: 0.9375rem;
}

.actions-toolbar[b-7txq18hcuk] {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.action-items-list[b-7txq18hcuk] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-item-card[b-7txq18hcuk] {
    border: 1px solid #dee2e6;
    border-left-width: 4px;
    border-radius: 6px;
    background: #fff;
    transition: all 0.2s ease;
}

.action-item-card:hover[b-7txq18hcuk] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.action-item-card.unreviewed[b-7txq18hcuk] {
    background: #fffbf0;
}

.action-item-card.priority-high[b-7txq18hcuk] {
    border-left-color: #dc3545;
}

.action-item-card.priority-medium[b-7txq18hcuk] {
    border-left-color: #ffc107;
}

.action-item-card.priority-low[b-7txq18hcuk] {
    border-left-color: #0d6efd;
}

.card-header[b-7txq18hcuk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.status-indicators[b-7txq18hcuk] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.priority-badge[b-7txq18hcuk],
.status-badge[b-7txq18hcuk],
.review-badge[b-7txq18hcuk] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
}

.priority-badge.priority-high[b-7txq18hcuk] {
    background: #f8d7da;
    color: #721c24;
}

.priority-badge.priority-medium[b-7txq18hcuk] {
    background: #fff3cd;
    color: #664d03;
}

.priority-badge.priority-low[b-7txq18hcuk] {
    background: #cfe2ff;
    color: #084298;
}

.status-badge.status-pending[b-7txq18hcuk] {
    background: #e2e3e5;
    color: #41464b;
}

.status-badge.status-inprogress[b-7txq18hcuk] {
    background: #cfe2ff;
    color: #084298;
}

.status-badge.status-completed[b-7txq18hcuk] {
    background: #d1e7dd;
    color: #0a3622;
}

.status-badge.status-onhold[b-7txq18hcuk] {
    background: #fff3cd;
    color: #664d03;
}

.status-badge.status-cancelled[b-7txq18hcuk] {
    background: #f8d7da;
    color: #721c24;
}

.review-badge.unreviewed[b-7txq18hcuk] {
    background: #fff3cd;
    color: #664d03;
}

.review-badge.reviewed[b-7txq18hcuk] {
    background: #d1e7dd;
    color: #0a3622;
}

.card-actions[b-7txq18hcuk] {
    display: flex;
    gap: 0.375rem;
}

.card-body[b-7txq18hcuk] {
    padding: 1rem;
}

.description[b-7txq18hcuk] {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #212529;
    margin-bottom: 0.75rem;
}

.metadata[b-7txq18hcuk] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.meta-item[b-7txq18hcuk] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.meta-item i[b-7txq18hcuk] {
    color: #495057;
}

.notes-section[b-7txq18hcuk] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 0.75rem;
    margin-top: 0.75rem;
}

.notes-section strong[b-7txq18hcuk] {
    display: block;
    margin-bottom: 0.5rem;
    color: #495057;
    font-size: 0.875rem;
}

.notes-section p[b-7txq18hcuk] {
    margin: 0;
    font-size: 0.875rem;
    color: #6c757d;
}

.validation-panel[b-7txq18hcuk] {
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1.5rem;
    border-left-width: 4px;
    border-left-style: solid;
}

.validation-panel.validation-success[b-7txq18hcuk] {
    background: #d4edda;
    border-left-color: #198754;
    color: #155724;
}

.validation-panel.validation-warning[b-7txq18hcuk] {
    background: #fff3cd;
    border-left-color: #ffc107;
    color: #664d03;
}

.validation-panel.validation-info[b-7txq18hcuk] {
    background: #cfe2ff;
    border-left-color: #0d6efd;
    color: #084298;
}

.validation-header[b-7txq18hcuk] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.validation-header i[b-7txq18hcuk] {
    font-size: 1.25rem;
}

.validation-content[b-7txq18hcuk] {
    margin-left: 2rem;
}

.validation-content p[b-7txq18hcuk] {
    margin: 0;
    font-size: 0.9375rem;
}

.item-preview[b-7txq18hcuk] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 0.75rem;
    font-size: 0.9375rem;
    color: #495057;
}

.modal-backdrop.show[b-7txq18hcuk] {
    opacity: 0.5;
}

.modal.show[b-7txq18hcuk] {
    display: block;
}

@media (max-width: 992px) {
    .review-header[b-7txq18hcuk] {
        flex-direction: column;
        gap: 1rem;
    }

    .review-stats[b-7txq18hcuk] {
        align-items: flex-start;
        width: 100%;
    }

    .card-header[b-7txq18hcuk] {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .status-indicators[b-7txq18hcuk] {
        width: 100%;
    }

    .card-actions[b-7txq18hcuk] {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .action-item-review[b-7txq18hcuk] {
        padding: 1rem;
    }

    .metadata[b-7txq18hcuk] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .stat-breakdown[b-7txq18hcuk] {
        flex-wrap: wrap;
    }

    .actions-toolbar[b-7txq18hcuk] {
        flex-direction: column;
    }

    .actions-toolbar button[b-7txq18hcuk] {
        width: 100%;
    }
}

/* /Components/Curation/AlbumCoverUpload.razor.rz.scp.css */
.album-cover-upload[b-joow510ykv] {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.upload-header[b-joow510ykv] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.upload-header h4[b-joow510ykv] {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #212529;
}

.locked-badge[b-joow510ykv] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: #dc3545;
    color: white;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.uploading-indicator[b-joow510ykv],
.success-indicator[b-joow510ykv] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.uploading-indicator[b-joow510ykv] {
    background: #ffc107;
    color: #000;
}

.success-indicator[b-joow510ykv] {
    background: #d4edda;
    color: #155724;
}

.locked-message[b-joow510ykv] {
    background: #f8d7da;
    border: 1px solid #f5c2c7;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.locked-message i[b-joow510ykv] {
    font-size: 1.5rem;
    color: #842029;
    margin-top: 0.125rem;
}

.locked-message strong[b-joow510ykv] {
    display: block;
    color: #842029;
    margin-bottom: 0.25rem;
}

.locked-message p[b-joow510ykv] {
    margin: 0;
    color: #58151c;
    font-size: 0.9375rem;
}

.current-cover-section[b-joow510ykv] {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.cover-preview-container[b-joow510ykv] {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.current-cover-image[b-joow510ykv] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cover-overlay[b-joow510ykv] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cover-preview-container:hover .cover-overlay[b-joow510ykv] {
    opacity: 1;
}

.cover-info[b-joow510ykv] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #198754;
    font-size: 0.9375rem;
}

.upload-section[b-joow510ykv] {
    position: relative;
}

.upload-section.locked[b-joow510ykv] {
    opacity: 0.6;
    pointer-events: none;
}

.requirements-info[b-joow510ykv] {
    background: #e7f3ff;
    border-left: 4px solid #0d6efd;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.requirements-info h5[b-joow510ykv] {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #004085;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.requirements-info ul[b-joow510ykv] {
    margin: 0;
    padding-left: 1.25rem;
    color: #004085;
}

.requirements-info li[b-joow510ykv] {
    margin-bottom: 0.375rem;
    font-size: 0.9375rem;
}

.drop-zone[b-joow510ykv] {
    border: 2px dashed #ced4da;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.drop-zone.dragging[b-joow510ykv] {
    border-color: #0d6efd;
    background: #e7f3ff;
}

.drop-zone.disabled[b-joow510ykv] {
    cursor: not-allowed;
    opacity: 0.6;
}

.drop-icon[b-joow510ykv] {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.drop-zone.dragging .drop-icon[b-joow510ykv] {
    color: #0d6efd;
}

.drop-text[b-joow510ykv] {
    margin-bottom: 1.5rem;
    color: #6c757d;
    font-size: 1rem;
}

.drop-zone:hover:not(.disabled)[b-joow510ykv] {
    border-color: #0d6efd;
    background: #f0f7ff;
}

.file-selected-info[b-joow510ykv] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    margin-top: 1rem;
}

.file-icon[b-joow510ykv] {
    font-size: 2rem;
    color: #0d6efd;
}

.file-details[b-joow510ykv] {
    flex: 1;
}

.file-details strong[b-joow510ykv] {
    display: block;
    font-size: 0.9375rem;
    color: #212529;
    margin-bottom: 0.25rem;
}

.file-details small[b-joow510ykv] {
    color: #6c757d;
    font-size: 0.875rem;
}

.validation-status[b-joow510ykv] {
    font-size: 1.5rem;
}

.validation-status.valid[b-joow510ykv] {
    color: #198754;
}

.validation-status.invalid[b-joow510ykv] {
    color: #dc3545;
}

.validation-errors[b-joow510ykv] {
    margin-top: 1rem;
}

.validation-errors ul[b-joow510ykv] {
    margin: 0.5rem 0 0 0;
    padding-left: 1.25rem;
}

.validation-errors li[b-joow510ykv] {
    margin-bottom: 0.25rem;
}

.btn-upload[b-joow510ykv] {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-upload .spinner-border[b-joow510ykv] {
    margin-right: 0.5rem;
}

.modal-backdrop.show[b-joow510ykv] {
    opacity: 0.5;
}

.modal.show[b-joow510ykv] {
    display: block;
}

/* AI Generation Section (WO-276) */

.ai-generation-section[b-joow510ykv] {
    background: linear-gradient(135deg, #f0f0ff 0%, #fff5f0 100%);
    border: 1px solid #c5cae9;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.ai-generation-section h5[b-joow510ykv] {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #283593;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ai-description[b-joow510ykv] {
    color: #5c6bc0;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.btn-generate[b-joow510ykv] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.generating-indicator[b-joow510ykv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
}

.generating-indicator p[b-joow510ykv] {
    color: #5c6bc0;
    margin: 0;
    font-size: 0.9375rem;
}

.generated-preview[b-joow510ykv] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.generated-image-container[b-joow510ykv] {
    width: 270px;
    height: 270px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid #c5cae9;
}

.generated-image[b-joow510ykv] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.generated-actions[b-joow510ykv] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.generated-actions .btn[b-joow510ykv] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
}

.upload-divider[b-joow510ykv] {
    margin: 1.5rem 0;
    border-color: #dee2e6;
}

@media (max-width: 768px) {
    .album-cover-upload[b-joow510ykv] {
        padding: 1rem;
    }

    .drop-zone[b-joow510ykv] {
        padding: 2rem 1rem;
    }

    .drop-icon[b-joow510ykv] {
        font-size: 2rem;
    }

    .cover-preview-container[b-joow510ykv] {
        width: 150px;
        height: 150px;
    }
}

/* /Components/Curation/AttachFireflyDataPanel.razor.rz.scp.css */
.attach-firefly-panel[b-1u8jibzps9] {
    background: white;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.panel-header[b-1u8jibzps9] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    border-bottom: 1px solid #dee2e6;
}

.header-icon[b-1u8jibzps9] {
    font-size: 1.75rem;
    color: #856404;
    flex-shrink: 0;
}

.header-text h4[b-1u8jibzps9] {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #856404;
}

.panel-tabs[b-1u8jibzps9] {
    padding: 0 1rem;
    border-bottom: 1px solid #dee2e6;
}

.panel-tabs .nav-link[b-1u8jibzps9] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    color: #6c757d;
    border: none;
    padding: 0.75rem 1rem;
}

.panel-tabs .nav-link.active[b-1u8jibzps9] {
    color: #0d6efd;
    font-weight: 600;
    border-bottom: 2px solid #0d6efd;
}

.panel-tabs .nav-link:hover:not(.active)[b-1u8jibzps9] {
    color: #495057;
    border-color: transparent;
}

.panel-body[b-1u8jibzps9] {
    padding: 1.25rem 1.5rem;
}

.tab-guidance[b-1u8jibzps9] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.tab-guidance i[b-1u8jibzps9] {
    color: #0d6efd;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Tab 1: Recording list */
.recording-list[b-1u8jibzps9] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
}

.recording-card[b-1u8jibzps9] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.875rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.recording-card:hover[b-1u8jibzps9] {
    border-color: #0d6efd;
    box-shadow: 0 1px 4px rgba(13, 110, 253, 0.1);
}

.recording-info[b-1u8jibzps9] {
    flex: 1;
    min-width: 0;
}

.recording-title[b-1u8jibzps9] {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recording-meta[b-1u8jibzps9] {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.35rem;
}

.recording-meta span[b-1u8jibzps9] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.availability-flags[b-1u8jibzps9] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.flag[b-1u8jibzps9] {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
}

.flag.available[b-1u8jibzps9] {
    background: #d1e7dd;
    color: #0f5132;
}

.flag.unavailable[b-1u8jibzps9] {
    background: #f8d7da;
    color: #842029;
}

.recording-action[b-1u8jibzps9] {
    flex-shrink: 0;
}

.empty-state[b-1u8jibzps9] {
    text-align: center;
    padding: 2rem 1rem;
    color: #6c757d;
}

.empty-state i[b-1u8jibzps9] {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Tab 2: URL form */
.url-form[b-1u8jibzps9] {
    max-width: 600px;
}

/* Tab 3: Upload */
.upload-form[b-1u8jibzps9] {
    max-width: 600px;
}

.file-input-area[b-1u8jibzps9] {
    margin-bottom: 0.5rem;
}

.file-drop-label[b-1u8jibzps9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.15s, background 0.15s;
    color: #6c757d;
}

.file-drop-label:hover[b-1u8jibzps9] {
    border-color: #0d6efd;
    background: #f8f9fa;
}

.file-drop-label i[b-1u8jibzps9] {
    font-size: 2rem;
}

.file-name[b-1u8jibzps9] {
    font-weight: 600;
    color: #212529;
}

.processing-status[b-1u8jibzps9] {
    display: flex;
    align-items: center;
    color: #0dcaf0;
    font-size: 0.9rem;
}
/* /Components/Curation/ContentLockIndicator.razor.rz.scp.css */
/* WO-125: Content Lock Indicator Styles */

.content-lock-indicator[b-zwwxlfsdqo] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    color: #856404;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: help;
    transition: all 0.2s ease;
}

.content-lock-indicator:hover[b-zwwxlfsdqo] {
    background-color: #ffe69c;
    border-color: #ffb900;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lock-icon[b-zwwxlfsdqo] {
    font-size: 1rem;
    color: #ffc107;
}

.lock-label[b-zwwxlfsdqo] {
    white-space: nowrap;
    user-select: none;
}

/* Icon-only variant (when ShowLabel=false) */
.content-lock-indicator:has(.lock-icon):not(:has(.lock-label))[b-zwwxlfsdqo] {
    padding: 0.375rem;
    aspect-ratio: 1;
    justify-content: center;
}

/* /Components/Curation/EnhancedTagPicker.razor.rz.scp.css */
/* Enhanced Tag Picker Styles */

.enhanced-tag-picker[b-xjlsmo78yi] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.picker-header[b-xjlsmo78yi] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.picker-header h5[b-xjlsmo78yi] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Category Tabs */
.category-tabs[b-xjlsmo78yi] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

.tab-btn[b-xjlsmo78yi] {
    padding: 0.5rem 1rem;
    border: none;
    background: #f5f5f5;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.tab-btn:hover[b-xjlsmo78yi] {
    background: #e0e0e0;
}

.tab-btn.active[b-xjlsmo78yi] {
    background: #3498db;
    color: white;
}

/* Search Box */
.search-box[b-xjlsmo78yi] {
    position: relative;
}

.search-box input[b-xjlsmo78yi] {
    padding-left: 2.5rem;
}

.search-box i[b-xjlsmo78yi] {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
}

/* Tag List */
.tag-list[b-xjlsmo78yi] {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.5rem;
}

.tag-item[b-xjlsmo78yi] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid #e0e0e0;
}

.tag-item:hover[b-xjlsmo78yi] {
    background: #f8f9fa;
    border-color: #3498db;
}

.tag-item.child-tag[b-xjlsmo78yi] {
    margin-left: 1.5rem;
    border-left: 3px solid #3498db;
}

.tag-info[b-xjlsmo78yi] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.tag-name[b-xjlsmo78yi] {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tag-category[b-xjlsmo78yi] {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: #ecf0f1;
    border-radius: 4px;
    color: #7f8c8d;
}

/* Assigned Tags */
.assigned-tags[b-xjlsmo78yi] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e0e0e0;
}

.assigned-tags h5[b-xjlsmo78yi] {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
}

.assigned-tag-list[b-xjlsmo78yi] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.assigned-tag-badge[b-xjlsmo78yi] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.tag-content[b-xjlsmo78yi] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tag-content .tag-name[b-xjlsmo78yi] {
    font-weight: 600;
    color: #2c3e50;
}

.tag-content .tag-meta[b-xjlsmo78yi] {
    font-size: 0.75rem;
    color: #7f8c8d;
}

.btn-remove[b-xjlsmo78yi] {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-remove:hover[b-xjlsmo78yi] {
    background: #fee;
}



/* /Components/Curation/FieldLockWarning.razor.rz.scp.css */
/* WO-125: Field Lock Warning Styles */

.field-lock-warning[b-fto5tp7y1i] {
    margin: 0.75rem 0;
    animation: slideIn-b-fto5tp7y1i 0.3s ease;
}

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

.field-lock-warning.block[b-fto5tp7y1i] {
    padding: 1rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.field-lock-warning.inline[b-fto5tp7y1i] {
    display: inline-flex;
    padding: 0.5rem 1rem;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    max-width: 100%;
}

.warning-content[b-fto5tp7y1i] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.warning-content > .bi[b-fto5tp7y1i] {
    font-size: 1.25rem;
    color: #ffc107;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.warning-text[b-fto5tp7y1i] {
    flex: 1;
}

.warning-title[b-fto5tp7y1i] {
    display: block;
    color: #856404;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.warning-message[b-fto5tp7y1i] {
    color: #856404;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

.warning-guidance[b-fto5tp7y1i] {
    margin: 0.5rem 0 0 0;
    padding: 0.5rem;
    background-color: #e7f3ff;
    border-radius: 4px;
    color: #004085;
    font-size: 0.8125rem;
    line-height: 1.4;
}

.warning-guidance .bi[b-fto5tp7y1i] {
    color: #0d6efd;
    margin-right: 0.25rem;
}

.warning-override[b-fto5tp7y1i] {
    margin: 0.5rem 0 0 0;
    padding: 0.5rem;
    background-color: #d1ecf1;
    border-radius: 4px;
    color: #0c5460;
    font-size: 0.8125rem;
    line-height: 1.4;
}

.warning-override .bi[b-fto5tp7y1i] {
    color: #17a2b8;
    margin-right: 0.25rem;
}

/* /Components/Curation/ImageCropper.razor.rz.scp.css */
/* WO-68: Image Cropper styles */
.image-cropper-overlay[b-dog2vsyhbi] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.image-cropper-dialog[b-dog2vsyhbi] {
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cropper-header[b-dog2vsyhbi] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.cropper-header h5[b-dog2vsyhbi] {
    margin: 0;
    font-weight: 600;
}

.dimension-info[b-dog2vsyhbi] {
    font-size: 0.875rem;
    color: #6c757d;
    flex: 1;
}

.cropper-body[b-dog2vsyhbi] {
    padding: 1.5rem;
}

.cropper-loading[b-dog2vsyhbi] {
    text-align: center;
    padding: 3rem 0;
    color: #6c757d;
}

.cropper-loading .spinner-border[b-dog2vsyhbi] {
    width: 2rem;
    height: 2rem;
    margin-bottom: 1rem;
}

.cropper-workspace[b-dog2vsyhbi] {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
}

.crop-canvas[b-dog2vsyhbi] {
    max-width: 100%;
    cursor: move;
    border-radius: 4px;
}

.crop-presets[b-dog2vsyhbi] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.crop-preview-section h6[b-dog2vsyhbi] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.crop-preview-box[b-dog2vsyhbi] {
    width: 120px;
    height: 120px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.crop-preview-image[b-dog2vsyhbi] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-placeholder[b-dog2vsyhbi] {
    font-size: 0.75rem;
    color: #adb5bd;
    text-align: center;
    padding: 0.5rem;
    margin: 0;
}

.cropper-footer[b-dog2vsyhbi] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid #dee2e6;
}

.cropper-footer .btn[b-dog2vsyhbi] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

@media (max-width: 576px) {
    .image-cropper-dialog[b-dog2vsyhbi] {
        width: 95%;
        max-height: 95vh;
    }

    .cropper-body[b-dog2vsyhbi] {
        padding: 1rem;
    }
}
/* /Components/Curation/PublicationActivityPanel.razor.rz.scp.css */
/* WO-139: Publication Activity Panel Styles */

.publication-activity-panel[b-adu62b4c7l] {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.panel-header[b-adu62b4c7l] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.panel-header h5[b-adu62b4c7l] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
}

.panel-header h5 .bi[b-adu62b4c7l] {
    margin-right: 0.5rem;
    color: #6c757d;
}

.filter-dropdown select[b-adu62b4c7l] {
    min-width: 150px;
}

.panel-body[b-adu62b4c7l] {
    padding: 1rem;
    max-height: 500px;
    overflow-y: auto;
}

.loading-state[b-adu62b4c7l] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem;
    justify-content: center;
    color: #6c757d;
}

.empty-state[b-adu62b4c7l] {
    text-align: center;
    padding: 3rem 1rem;
    color: #6c757d;
}

.empty-state .bi[b-adu62b4c7l] {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.empty-state p[b-adu62b4c7l] {
    margin: 0.5rem 0;
    font-weight: 500;
}

.empty-state small[b-adu62b4c7l] {
    font-size: 0.875rem;
}

/* Timeline Styles */
.activity-timeline[b-adu62b4c7l] {
    position: relative;
}

.activity-item[b-adu62b4c7l] {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.activity-item:last-child[b-adu62b4c7l] {
    border-bottom: none;
}

.activity-item:hover[b-adu62b4c7l] {
    background-color: #f8f9fa;
}

.activity-icon[b-adu62b4c7l] {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.125rem;
}

/* Activity-specific colors */
.activity-publish .activity-icon[b-adu62b4c7l] {
    background-color: #d1f4e0;
    color: #28a745;
}

.activity-unpublish .activity-icon[b-adu62b4c7l] {
    background-color: #fff3cd;
    color: #ffc107;
}

.activity-lock .activity-icon[b-adu62b4c7l] {
    background-color: #ffe69c;
    color: #856404;
}

.activity-unlock .activity-icon[b-adu62b4c7l] {
    background-color: #d1ecf1;
    color: #17a2b8;
}

.activity-override .activity-icon[b-adu62b4c7l] {
    background-color: #f8d7da;
    color: #dc3545;
}

.activity-default .activity-icon[b-adu62b4c7l] {
    background-color: #e9ecef;
    color: #6c757d;
}

.activity-content[b-adu62b4c7l] {
    flex: 1;
    min-width: 0;
}

.activity-header[b-adu62b4c7l] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 0.25rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.activity-action[b-adu62b4c7l] {
    font-size: 0.95rem;
    color: #212529;
}

.activity-time[b-adu62b4c7l] {
    font-size: 0.8125rem;
    color: #6c757d;
    cursor: help;
}

.activity-details[b-adu62b4c7l] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.activity-user[b-adu62b4c7l] {
    font-size: 0.875rem;
    color: #495057;
}

.activity-user .bi[b-adu62b4c7l] {
    font-size: 0.75rem;
    opacity: 0.7;
}

.activity-status[b-adu62b4c7l] {
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-weight: 500;
}

.activity-status.success[b-adu62b4c7l] {
    background-color: #d1f4e0;
    color: #28a745;
}

.activity-status.failed[b-adu62b4c7l] {
    background-color: #f8d7da;
    color: #dc3545;
}

/* Pagination */
.pagination-controls[b-adu62b4c7l] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0 0.5rem 0;
    margin-top: 1rem;
    border-top: 1px solid #dee2e6;
}

.page-info[b-adu62b4c7l] {
    font-size: 0.875rem;
    color: #6c757d;
}

/* /Components/Curation/PublicationButton.razor.rz.scp.css */
/* WO-120: Publication confirmation preview styles */
.publish-preview[b-1lg0pebj38] { margin-bottom: 1rem; }
.publish-preview h6[b-1lg0pebj38] { font-size: 0.875rem; font-weight: 600; color: #495057; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.375rem; }
.preview-card[b-1lg0pebj38] { display: flex; gap: 1rem; padding: 0.75rem; background: #f8f9fa; border-radius: 8px; border: 1px solid #dee2e6; }
.preview-album-cover[b-1lg0pebj38] { width: 80px; height: 80px; border-radius: 6px; object-fit: cover; }
.preview-details[b-1lg0pebj38] { flex: 1; }
.preview-details strong[b-1lg0pebj38] { display: block; margin-bottom: 0.25rem; }
.preview-quote[b-1lg0pebj38] { font-style: italic; font-size: 0.875rem; color: #6c757d; margin: 0.25rem 0; }
.preview-stats[b-1lg0pebj38] { display: flex; gap: 1rem; font-size: 0.8125rem; color: #6c757d; }
.preview-stats span[b-1lg0pebj38] { display: flex; align-items: center; gap: 0.25rem; }
.lock-warning[b-1lg0pebj38] { display: flex; gap: 0.5rem; align-items: flex-start; padding: 0.75rem; background: #fff3cd; border-radius: 6px; margin-bottom: 1rem; }
.lock-warning i[b-1lg0pebj38] { color: #856404; margin-top: 0.125rem; }
.lock-warning small[b-1lg0pebj38] { color: #664d03; }
.modal-overlay[b-1lg0pebj38] { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 1050; display: flex; align-items: center; justify-content: center; }
.modal-overlay .modal-dialog[b-1lg0pebj38] { max-width: 500px; width: 90%; }
/* /Components/Curation/PublicationValidation.razor.rz.scp.css */
.publication-sidebar[b-tpb2rn54s3] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.sidebar-header[b-tpb2rn54s3] {
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.sidebar-header h4[b-tpb2rn54s3] {
    margin: 0 0 1rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.readiness-meter[b-tpb2rn54s3] {
    margin-top: 1rem;
}

.readiness-percentage[b-tpb2rn54s3] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.readiness-meter .progress[b-tpb2rn54s3] {
    height: 8px;
    background-color: rgba(255,255,255,0.3);
    border-radius: 4px;
}

.readiness-meter .progress-bar[b-tpb2rn54s3] {
    transition: width 0.6s ease;
}

.sidebar-loading[b-tpb2rn54s3] {
    padding: 2rem;
    text-align: center;
    color: #6c757d;
}

.sidebar-loading .spinner-border[b-tpb2rn54s3] {
    margin-bottom: 0.5rem;
}

/* Validation Checklist */
.validation-checklist[b-tpb2rn54s3] {
    padding: 1rem;
}

.checklist-item[b-tpb2rn54s3] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    transition: all 0.2s;
}

.checklist-item i[b-tpb2rn54s3] {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.checklist-item.item-valid[b-tpb2rn54s3] {
    background-color: #d4edda;
    border-left: 3px solid #28a745;
}

.checklist-item.item-valid i[b-tpb2rn54s3] {
    color: #28a745;
}

.checklist-item.item-invalid[b-tpb2rn54s3] {
    background-color: #f8d7da;
    border-left: 3px solid #dc3545;
}

.checklist-item.item-invalid i[b-tpb2rn54s3] {
    color: #dc3545;
}

.item-content[b-tpb2rn54s3] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.item-detail[b-tpb2rn54s3] {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
}

.cover-thumbnail[b-tpb2rn54s3] {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid #dee2e6;
    margin-top: 0.25rem;
}

/* Validation Errors */
.validation-errors[b-tpb2rn54s3] {
    padding: 1rem;
    background-color: #fff3cd;
    border-top: 1px solid #ffc107;
}

.validation-errors h5[b-tpb2rn54s3] {
    margin: 0 0 1rem 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #856404;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-message[b-tpb2rn54s3] {
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
    color: #721c24;
}

.error-message strong[b-tpb2rn54s3] {
    display: block;
    margin-bottom: 0.25rem;
}

.error-message .resolution[b-tpb2rn54s3] {
    display: block;
    margin-top: 0.25rem;
    color: #856404;
    font-style: italic;
}

/* Publication Button Container */
.publication-button-container[b-tpb2rn54s3] {
    padding: 1rem;
    border-top: 1px solid #dee2e6;
}

.tooltip-wrapper[b-tpb2rn54s3] {
    position: relative;
}

.tooltip-wrapper:hover[b-tpb2rn54s3]::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: pre-line;
    z-index: 1000;
    margin-bottom: 0.5rem;
    max-width: 300px;
}

/* Modal Overlay */
.modal-overlay[b-tpb2rn54s3] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.modal-dialog[b-tpb2rn54s3] {
    width: 90%;
    max-width: 500px;
}

/* Toast Notifications */
.toast-container[b-tpb2rn54s3] {
    z-index: 1100;
}

.toast[b-tpb2rn54s3] {
    min-width: 300px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .workspace-container[b-tpb2rn54s3] {
        grid-template-columns: 1fr 300px;
    }
}

@media (max-width: 992px) {
    .workspace-container[b-tpb2rn54s3] {
        grid-template-columns: 1fr;
    }
    
    .workspace-sidebar[b-tpb2rn54s3] {
        position: relative;
        top: 0;
        max-height: none;
        order: -1; /* Show sidebar above content on mobile */
    }
}

/* /Components/Curation/QuoteTextEditor.razor.rz.scp.css */
.quote-text-editor[b-lw6ac65m8z] {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.editor-header[b-lw6ac65m8z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.editor-header h4[b-lw6ac65m8z] {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #212529;
}

.locked-badge[b-lw6ac65m8z] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: #dc3545;
    color: white;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.saving-indicator[b-lw6ac65m8z],
.saved-indicator[b-lw6ac65m8z] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.saving-indicator[b-lw6ac65m8z] {
    background: #ffc107;
    color: #000;
}

.saved-indicator[b-lw6ac65m8z] {
    background: #d4edda;
    color: #155724;
}

.character-requirements[b-lw6ac65m8z] {
    background: #e7f3ff;
    border-left: 4px solid #0d6efd;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    font-size: 0.9375rem;
    color: #004085;
}

.character-requirements i[b-lw6ac65m8z] {
    margin-right: 0.5rem;
}

.locked-message[b-lw6ac65m8z] {
    background: #f8d7da;
    border: 1px solid #f5c2c7;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.locked-message i[b-lw6ac65m8z] {
    font-size: 1.5rem;
    color: #842029;
    margin-top: 0.125rem;
}

.locked-message strong[b-lw6ac65m8z] {
    display: block;
    color: #842029;
    margin-bottom: 0.25rem;
}

.locked-message p[b-lw6ac65m8z] {
    margin: 0;
    color: #58151c;
    font-size: 0.9375rem;
}

.editor-container[b-lw6ac65m8z] {
    position: relative;
}

.editor-container.locked[b-lw6ac65m8z] {
    opacity: 0.6;
}

.quote-input[b-lw6ac65m8z] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    resize: vertical;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.quote-input:focus[b-lw6ac65m8z] {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
}

.quote-input.valid[b-lw6ac65m8z] {
    border-color: #198754;
}

.quote-input.valid:focus[b-lw6ac65m8z] {
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.1);
}

.quote-input.warning[b-lw6ac65m8z] {
    border-color: #ffc107;
}

.quote-input.warning:focus[b-lw6ac65m8z] {
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.1);
}

.quote-input.invalid[b-lw6ac65m8z] {
    border-color: #dc3545;
}

.quote-input.invalid:focus[b-lw6ac65m8z] {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.1);
}

.quote-input:disabled[b-lw6ac65m8z] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.editor-footer[b-lw6ac65m8z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    padding: 0 0.25rem;
}

.character-count[b-lw6ac65m8z] {
    font-size: 0.875rem;
}

.count[b-lw6ac65m8z] {
    font-weight: 600;
    font-size: 1rem;
}

.count-label[b-lw6ac65m8z] {
    color: #6c757d;
    margin-left: 0.25rem;
}

.validation-indicator[b-lw6ac65m8z] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.validation-indicator.valid[b-lw6ac65m8z] {
    color: #198754;
}

.validation-indicator.warning[b-lw6ac65m8z] {
    color: #ffc107;
}

.validation-indicator.invalid[b-lw6ac65m8z] {
    color: #dc3545;
}

.validation-indicator i[b-lw6ac65m8z] {
    font-size: 1rem;
}

.character-progress[b-lw6ac65m8z] {
    margin-top: 1rem;
}

.progress-track[b-lw6ac65m8z] {
    position: relative;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: visible;
}

.progress-fill[b-lw6ac65m8z] {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.progress-fill.progress-valid[b-lw6ac65m8z] {
    background: linear-gradient(90deg, #198754, #20c997);
}

.progress-fill.progress-warning[b-lw6ac65m8z] {
    background: linear-gradient(90deg, #ffc107, #ffca2c);
}

.progress-fill.progress-invalid[b-lw6ac65m8z] {
    background: linear-gradient(90deg, #dc3545, #e35d6a);
}

.progress-marker[b-lw6ac65m8z] {
    position: absolute;
    top: -2px;
    width: 2px;
    height: 12px;
    background: #495057;
    transform: translateX(-50%);
}

.marker-label[b-lw6ac65m8z] {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6875rem;
    font-weight: 600;
    color: #495057;
    white-space: nowrap;
}

.progress-marker-min[b-lw6ac65m8z] {
    z-index: 10;
}

.progress-marker-rec-min[b-lw6ac65m8z],
.progress-marker-rec-max[b-lw6ac65m8z] {
    z-index: 10;
    background: #198754;
}

.progress-marker-max[b-lw6ac65m8z] {
    z-index: 10;
}

@media (max-width: 768px) {
    .editor-footer[b-lw6ac65m8z] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .marker-label[b-lw6ac65m8z] {
        font-size: 0.625rem;
    }
}

/* /Components/Curation/TagManagement.razor.rz.scp.css */
.tag-management[b-g6fpg0h1la] {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.tags-header[b-g6fpg0h1la] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #dee2e6;
}

.tags-header h4[b-g6fpg0h1la] {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #212529;
}

.tags-stats[b-g6fpg0h1la] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-item[b-g6fpg0h1la] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
}

.stat-item.valid[b-g6fpg0h1la] {
    background: #d4edda;
    color: #155724;
}

.stat-item.invalid[b-g6fpg0h1la] {
    background: #f8d7da;
    color: #721c24;
}

.locked-message[b-g6fpg0h1la] {
    background: #f8d7da;
    border: 1px solid #f5c2c7;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.locked-message i[b-g6fpg0h1la] {
    font-size: 1.5rem;
    color: #842029;
    margin-top: 0.125rem;
}

.locked-message strong[b-g6fpg0h1la] {
    display: block;
    color: #842029;
    margin-bottom: 0.25rem;
}

.locked-message p[b-g6fpg0h1la] {
    margin: 0;
    color: #58151c;
    font-size: 0.9375rem;
}

.tags-container[b-g6fpg0h1la] {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.tag-assignment-section h5[b-g6fpg0h1la],
.assigned-tags-section h5[b-g6fpg0h1la] {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
}

.tag-selector .form-select[b-g6fpg0h1la] {
    border: 2px solid #dee2e6;
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 0.9375rem;
}

.tag-selector .form-select:focus[b-g6fpg0h1la] {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
}

.tag-badges[b-g6fpg0h1la] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-badge[b-g6fpg0h1la] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.9375rem;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.tag-badge:hover[b-g6fpg0h1la] {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tag-badge.tag-type-department[b-g6fpg0h1la] {
    background: #cfe2ff;
    color: #084298;
    border-color: #9ec5fe;
}

.tag-badge.tag-type-topic[b-g6fpg0h1la] {
    background: #d1e7dd;
    color: #0a3622;
    border-color: #a3cfbb;
}

.tag-badge.tag-type-custom[b-g6fpg0h1la] {
    background: #e2e3e5;
    color: #41464b;
    border-color: #c4c8cc;
}

.tag-name[b-g6fpg0h1la] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 500;
}

.tag-type-label[b-g6fpg0h1la] {
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-remove[b-g6fpg0h1la] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding: 0;
    border: none;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-remove:hover[b-g6fpg0h1la] {
    background: #dc3545;
    color: white;
}

.validation-panel[b-g6fpg0h1la] {
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1.5rem;
    border-left-width: 4px;
    border-left-style: solid;
}

.validation-panel.validation-success[b-g6fpg0h1la] {
    background: #d4edda;
    border-left-color: #198754;
    color: #155724;
}

.validation-panel.validation-warning[b-g6fpg0h1la] {
    background: #fff3cd;
    border-left-color: #ffc107;
    color: #664d03;
}

.validation-panel.validation-error[b-g6fpg0h1la] {
    background: #f8d7da;
    border-left-color: #dc3545;
    color: #721c24;
}

.validation-header[b-g6fpg0h1la] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.validation-header i[b-g6fpg0h1la] {
    font-size: 1.25rem;
}

.validation-content[b-g6fpg0h1la] {
    margin-left: 2rem;
}

.validation-content p[b-g6fpg0h1la] {
    margin: 0;
    font-size: 0.9375rem;
}

.modal-backdrop.show[b-g6fpg0h1la] {
    opacity: 0.5;
}

.modal.show[b-g6fpg0h1la] {
    display: block;
}

@media (max-width: 992px) {
    .tags-container[b-g6fpg0h1la] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .tag-management[b-g6fpg0h1la] {
        padding: 1rem;
    }

    .tags-header[b-g6fpg0h1la] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .tag-badges[b-g6fpg0h1la] {
        gap: 0.5rem;
    }

    .tag-badge[b-g6fpg0h1la] {
        font-size: 0.875rem;
        padding: 0.375rem 0.625rem;
    }

    .validation-panel[b-g6fpg0h1la] {
        padding: 0.75rem;
    }

    .validation-content[b-g6fpg0h1la] {
        margin-left: 1.5rem;
    }
}

/* /Components/Curation/TranscriptHighlights.razor.rz.scp.css */
.transcript-highlights[b-alqv9a2dfm] {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.highlights-header[b-alqv9a2dfm] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #dee2e6;
}

.highlights-header h4[b-alqv9a2dfm] {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #212529;
}

.highlights-stats[b-alqv9a2dfm] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.stat-item[b-alqv9a2dfm] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
}

.stat-item.valid[b-alqv9a2dfm] {
    background: #d4edda;
    color: #155724;
}

.stat-item.invalid[b-alqv9a2dfm] {
    background: #f8d7da;
    color: #721c24;
}

.stat-breakdown[b-alqv9a2dfm] {
    display: flex;
    gap: 0.5rem;
}

.stat-badge[b-alqv9a2dfm] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.stat-badge.stat-keyinsight[b-alqv9a2dfm] {
    background: #cfe2ff;
    color: #084298;
}

.stat-badge.stat-feedback[b-alqv9a2dfm] {
    background: #d1e7dd;
    color: #0a3622;
}

.stat-badge.stat-actionable[b-alqv9a2dfm] {
    background: #ffecd9;
    color: #653208;
}

.locked-message[b-alqv9a2dfm] {
    background: #f8d7da;
    border: 1px solid #f5c2c7;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.locked-message i[b-alqv9a2dfm] {
    font-size: 1.5rem;
    color: #842029;
    margin-top: 0.125rem;
}

.locked-message strong[b-alqv9a2dfm] {
    display: block;
    color: #842029;
    margin-bottom: 0.25rem;
}

.locked-message p[b-alqv9a2dfm] {
    margin: 0;
    color: #58151c;
    font-size: 0.9375rem;
}

.highlights-container[b-alqv9a2dfm] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.highlights-list[b-alqv9a2dfm] {
    border-right: 1px solid #dee2e6;
    padding-right: 1.5rem;
}

.list-header[b-alqv9a2dfm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.list-header h5[b-alqv9a2dfm] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
}

.highlight-items[b-alqv9a2dfm] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 600px;
    overflow-y: auto;
}

.highlight-card[b-alqv9a2dfm] {
    border: 1px solid #dee2e6;
    border-left-width: 4px;
    border-radius: 6px;
    padding: 1rem;
    background: #f8f9fa;
    transition: all 0.2s ease;
}

.highlight-card:hover[b-alqv9a2dfm] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.highlight-card.highlight-keyinsight[b-alqv9a2dfm] {
    border-left-color: #0d6efd;
}

.highlight-card.highlight-importantfeedback[b-alqv9a2dfm] {
    border-left-color: #198754;
}

.highlight-card.highlight-actionableitem[b-alqv9a2dfm] {
    border-left-color: #fd7e14;
}

.highlight-header[b-alqv9a2dfm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.highlight-type-badge[b-alqv9a2dfm] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
}

.highlight-keyinsight .highlight-type-badge[b-alqv9a2dfm] {
    background: #cfe2ff;
    color: #084298;
}

.highlight-importantfeedback .highlight-type-badge[b-alqv9a2dfm] {
    background: #d1e7dd;
    color: #0a3622;
}

.highlight-actionableitem .highlight-type-badge[b-alqv9a2dfm] {
    background: #ffecd9;
    color: #653208;
}

.highlight-position[b-alqv9a2dfm] {
    font-size: 0.8125rem;
    color: #6c757d;
    font-family: 'Courier New', monospace;
}

.highlight-text[b-alqv9a2dfm] {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #212529;
    margin-bottom: 0.75rem;
    font-style: italic;
}

.highlight-footer[b-alqv9a2dfm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.highlight-footer small[b-alqv9a2dfm] {
    font-size: 0.75rem;
}

.transcript-view[b-alqv9a2dfm] {
    padding-left: 1.5rem;
}

.transcript-view h5[b-alqv9a2dfm] {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
}

.transcript-content[b-alqv9a2dfm] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 1rem;
    max-height: 600px;
    overflow-y: auto;
    font-size: 0.9375rem;
    line-height: 1.8;
    white-space: pre-wrap;
    color: #212529;
}

.highlight-preview[b-alqv9a2dfm] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 0.75rem;
    font-style: italic;
    color: #495057;
}

.modal-backdrop.show[b-alqv9a2dfm] {
    opacity: 0.5;
}

.modal.show[b-alqv9a2dfm] {
    display: block;
}

@media (max-width: 992px) {
    .highlights-container[b-alqv9a2dfm] {
        grid-template-columns: 1fr;
    }

    .highlights-list[b-alqv9a2dfm] {
        border-right: none;
        border-bottom: 1px solid #dee2e6;
        padding-right: 0;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .transcript-view[b-alqv9a2dfm] {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .transcript-highlights[b-alqv9a2dfm] {
        padding: 1rem;
    }

    .highlights-header[b-alqv9a2dfm] {
        flex-direction: column;
        gap: 1rem;
    }

    .highlights-stats[b-alqv9a2dfm] {
        align-items: flex-start;
        width: 100%;
    }

    .stat-breakdown[b-alqv9a2dfm] {
        flex-wrap: wrap;
    }

    .highlight-items[b-alqv9a2dfm] {
        max-height: 400px;
    }

    .transcript-content[b-alqv9a2dfm] {
        max-height: 300px;
    }
}

/* /Components/Curation/UnpublishButton.razor.rz.scp.css */
/* WO-133: Unpublish Button Styles */

.unpublish-button-container[b-ejg4a33kj8] {
    margin: 1rem 0;
}

.unpublish-button-container .btn[b-ejg4a33kj8] {
    width: 100%;
    transition: all 0.2s ease;
}

.unpublish-button-container .btn:hover[b-ejg4a33kj8] {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.unpublish-button-container .btn .bi[b-ejg4a33kj8] {
    margin-right: 0.5rem;
}

.unpublish-button-container small[b-ejg4a33kj8] {
    font-size: 0.8125rem;
    line-height: 1.4;
}

.unpublish-button-container small .bi[b-ejg4a33kj8] {
    font-size: 0.75rem;
}

/* /Components/Curation/UnpublishConfirmationDialog.razor.rz.scp.css */
/* WO-74: Unpublish Confirmation Dialog Styles */

.modal-overlay[b-n75rqo7xsa] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    animation: fadeIn-b-n75rqo7xsa 0.2s ease;
}

@keyframes fadeIn-b-n75rqo7xsa {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-dialog[b-n75rqo7xsa] {
    animation: slideDown-b-n75rqo7xsa 0.3s ease;
}

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

.impact-section[b-n75rqo7xsa] {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.impact-section h6[b-n75rqo7xsa] {
    color: #495057;
    margin-bottom: 1rem;
    font-weight: 600;
}

.impact-grid[b-n75rqo7xsa] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.impact-item[b-n75rqo7xsa] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.impact-item strong[b-n75rqo7xsa] {
    font-size: 0.875rem;
    color: #6c757d;
}

.impact-item span[b-n75rqo7xsa] {
    font-size: 0.95rem;
}

.guidance-section[b-n75rqo7xsa] {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #e7f3ff;
    border-left: 4px solid #0d6efd;
    border-radius: 4px;
}

.guidance-section h6[b-n75rqo7xsa] {
    color: #0d6efd;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.requirements-list[b-n75rqo7xsa] {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    color: #495057;
}

.requirements-list li[b-n75rqo7xsa] {
    margin-bottom: 0.25rem;
}

.confirmation-checkbox[b-n75rqo7xsa] {
    padding: 1rem;
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
}

.confirmation-checkbox .form-check-label[b-n75rqo7xsa] {
    color: #856404;
    cursor: pointer;
    user-select: none;
}

.confirmation-checkbox .form-check-input[b-n75rqo7xsa] {
    cursor: pointer;
}

.confirmation-checkbox .form-check-input:checked[b-n75rqo7xsa] {
    background-color: #ffc107;
    border-color: #ffc107;
}

/* /Components/Feedback/ValidatorFeedbackForm.razor.rz.scp.css */
.validator-feedback-form[b-p6eo4unkmn] {
    max-width: 700px;
    margin: 2rem auto;
}

.validator-feedback-form .card[b-p6eo4unkmn] {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.validator-feedback-form .card-header[b-p6eo4unkmn] {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem;
}

.validator-feedback-form .card-header h3[b-p6eo4unkmn] {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: #333;
}

.validator-feedback-form .card-body[b-p6eo4unkmn] {
    padding: 1.5rem;
}

.validator-feedback-form .form-label[b-p6eo4unkmn] {
    font-weight: 600;
    color: #555;
    margin-bottom: 0.5rem;
}

.validator-feedback-form .form-control[b-p6eo4unkmn],
.validator-feedback-form .form-select[b-p6eo4unkmn] {
    border-radius: 4px;
    border: 1px solid #ced4da;
}

.validator-feedback-form .form-control:focus[b-p6eo4unkmn],
.validator-feedback-form .form-select:focus[b-p6eo4unkmn] {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.validator-feedback-form textarea.form-control[b-p6eo4unkmn] {
    resize: vertical;
    min-height: 120px;
}

.validator-feedback-form .btn[b-p6eo4unkmn] {
    padding: 0.625rem 1.25rem;
    border-radius: 4px;
    font-weight: 500;
}

.validator-feedback-form .alert[b-p6eo4unkmn] {
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.validator-feedback-form .spinner-border-sm[b-p6eo4unkmn] {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

.validator-feedback-form small.text-muted[b-p6eo4unkmn] {
    font-size: 0.875rem;
}

.validator-feedback-form .text-danger[b-p6eo4unkmn] {
    color: #dc3545;
}

/* /Components/FileUpload/FileUploadComponent.razor.rz.scp.css */
.file-upload-component[b-4cntxevse7] {
    width: 100%;
    margin: 1rem 0;
}

.file-upload-area[b-4cntxevse7] {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background: #fafafa;
}

.file-upload-area.idle[b-4cntxevse7] {
    cursor: pointer;
}

.file-upload-area.idle:hover[b-4cntxevse7] {
    border-color: #4ECDC4;
    background: #f0f9f9;
}

.file-upload-area.drag-over[b-4cntxevse7] {
    border-color: #4ECDC4;
    border-width: 3px;
    background: #e6f7f7;
    transform: scale(1.02);
}

.file-upload-area.uploading[b-4cntxevse7] {
    border-color: #FFA502;
    background: #fff8f0;
}

.file-upload-area.success[b-4cntxevse7] {
    border-color: #2ED573;
    background: #f0fff4;
}

.file-upload-area.error[b-4cntxevse7] {
    border-color: #FF4757;
    background: #fff0f0;
}

.file-upload-label[b-4cntxevse7] {
    display: block;
    cursor: pointer;
}

.file-upload-label .file-input-hidden[b-4cntxevse7],
.file-upload-label input[type="file"][b-4cntxevse7] {
    display: none;
}

.file-upload-label[b-4cntxevse7]  .file-input-hidden {
    display: none;
}

.upload-icon[b-4cntxevse7] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.upload-text[b-4cntxevse7] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.upload-text strong[b-4cntxevse7] {
    font-size: 1.1rem;
    color: #333;
}

.upload-hint[b-4cntxevse7] {
    font-size: 0.9rem;
    color: #666;
}

.upload-progress[b-4cntxevse7] {
    width: 100%;
}

.progress-bar[b-4cntxevse7] {
    width: 100%;
    height: 24px;
    background: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill[b-4cntxevse7] {
    height: 100%;
    background: linear-gradient(90deg, #4ECDC4, #45B7D1);
    transition: width 0.3s ease;
}

.progress-text[b-4cntxevse7] {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
}

.upload-success[b-4cntxevse7],
.upload-error[b-4cntxevse7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.success-icon[b-4cntxevse7],
.error-icon[b-4cntxevse7] {
    font-size: 3rem;
}

.success-text[b-4cntxevse7],
.error-text[b-4cntxevse7] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.success-text strong[b-4cntxevse7],
.error-text strong[b-4cntxevse7] {
    font-size: 1.1rem;
}

.success-text span[b-4cntxevse7],
.error-text span[b-4cntxevse7] {
    font-size: 0.9rem;
    color: #666;
}

.drive-link[b-4cntxevse7] {
    color: #4ECDC4;
    text-decoration: none;
    font-size: 0.9rem;
}

.drive-link:hover[b-4cntxevse7] {
    text-decoration: underline;
}

.btn-retry[b-4cntxevse7] {
    padding: 0.5rem 1.5rem;
    background: #4ECDC4;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

.btn-retry:hover[b-4cntxevse7] {
    background: #45B7D1;
}

.error-guidance[b-4cntxevse7] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    margin-top: 12px;
    font-size: 0.85rem;
    font-style: italic;
    text-align: left;
}

.guidance-icon[b-4cntxevse7] {
    flex-shrink: 0;
    font-size: 1.2rem;
}


/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* CSS Variables from mockup */
:root[b-x9r0piifwx] {
    --bg: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --panel: #ffffff;
    --text: #1e293b;
    --muted: #64748b;
    --accent: #EE3342;
    --accent-hover: #d62c3a;
    --accent-contrast: #ffffff;
    --secondary: #f1f5f9;
    --border: #cbd5e1;
    --card-bg: #ffffff;
    --card-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.page[b-x9r0piifwx] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--bg);
}

/* Animated gradient header */
.header[b-x9r0piifwx] {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 25%, #4ecdc4 50%, #45b7d1 75%, #f9ca24 100%);
    background-size: 400% 400%;
    animation: gradientShift-b-x9r0piifwx 8s ease infinite;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 4px solid #000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

@keyframes gradientShift-b-x9r0piifwx {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.header-brand[b-x9r0piifwx] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.95);
    padding: 12px 20px;
    border-radius: 8px;
    border: 3px solid #000;
    box-shadow: 4px 4px 0 #000;
}

.header-text[b-x9r0piifwx] {
    display: flex;
    flex-direction: column;
}

.header-title[b-x9r0piifwx] {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.header-tagline[b-x9r0piifwx] {
    margin: 4px 0 0;
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.header-actions[b-x9r0piifwx] {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* UserMenu component styles are in UserMenu.razor.css */

.main-content[b-x9r0piifwx] {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 640.98px) {
    .header[b-x9r0piifwx] {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }

    .header-actions[b-x9r0piifwx] {
        flex-direction: column;
        width: 100%;
    }
}

@media (min-width: 641px) {
    article[b-x9r0piifwx] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Horizontal nav styling for header */
.header-nav[b-311o464vzp] {
    display: flex;
    gap: 16px;
}

.header-nav[b-311o464vzp]  .nav-link {
    color: #000;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: #fff;
    border: 3px solid #000;
    box-shadow: 3px 3px 0 #000;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

.header-nav[b-311o464vzp]  .nav-link:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 #000;
    background: #ffd93d;
}

.header-nav[b-311o464vzp]  .nav-link.active {
    background: var(--accent);
    color: #fff;
    box-shadow: 3px 3px 0 #aa0000;
}

/* Mobile responsive */
@media (max-width: 640.98px) {
    .header-nav[b-311o464vzp] {
        flex-direction: column;
        width: 100%;
    }

    .header-nav[b-311o464vzp]  .nav-link {
        text-align: center;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-5wcsxx2tbx],
.components-reconnect-repeated-attempt-visible[b-5wcsxx2tbx],
.components-reconnect-failed-visible[b-5wcsxx2tbx],
.components-pause-visible[b-5wcsxx2tbx],
.components-resume-failed-visible[b-5wcsxx2tbx],
.components-rejoining-animation[b-5wcsxx2tbx] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-5wcsxx2tbx],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-5wcsxx2tbx],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-5wcsxx2tbx],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-5wcsxx2tbx],
#components-reconnect-modal.components-reconnect-retrying[b-5wcsxx2tbx],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-5wcsxx2tbx],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-5wcsxx2tbx],
#components-reconnect-modal.components-reconnect-failed[b-5wcsxx2tbx],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-5wcsxx2tbx] {
    display: block;
}

#components-reconnect-modal[b-5wcsxx2tbx] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-5wcsxx2tbx 0.5s both;
}

#components-reconnect-modal[open][b-5wcsxx2tbx] {
    animation: components-reconnect-modal-slideUp-b-5wcsxx2tbx 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-5wcsxx2tbx 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

#components-reconnect-modal[b-5wcsxx2tbx]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-5wcsxx2tbx 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-5wcsxx2tbx {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-5wcsxx2tbx {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-5wcsxx2tbx {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-5wcsxx2tbx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-5wcsxx2tbx] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-5wcsxx2tbx] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

#components-reconnect-modal button:hover[b-5wcsxx2tbx] {
    background-color: #3b6ea2;
}

#components-reconnect-modal button:active[b-5wcsxx2tbx] {
    background-color: #6b9ed2;
}

.components-rejoining-animation[b-5wcsxx2tbx] {
    position: relative;
    width: 80px;
    height: 80px;
}

.components-rejoining-animation div[b-5wcsxx2tbx] {
    position: absolute;
    border: 3px solid #0087ff;
    opacity: 1;
    border-radius: 50%;
    animation: components-rejoining-animation-b-5wcsxx2tbx 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.components-rejoining-animation div:nth-child(2)[b-5wcsxx2tbx] {
    animation-delay: -0.5s;
}

@keyframes components-rejoining-animation-b-5wcsxx2tbx {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0;
        left: 0;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Layout/UserMenu.razor.rz.scp.css */
/* Full-screen invisible backdrop to capture outside clicks */
.user-menu-backdrop[b-b1k9eux523] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
}

/* User Menu Container */
.user-menu-container[b-b1k9eux523] {
    position: relative;
    z-index: 1000;
}

/* User Menu Button */
.user-menu-button[b-b1k9eux523] {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 8px;
    border: 3px solid #000;
    box-shadow: 3px 3px 0 #000;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.user-menu-button:hover[b-b1k9eux523] {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 #000;
    background: #ffd93d;
}

/* User Avatar Circle */
.user-avatar[b-b1k9eux523] {
    width: 32px;
    height: 32px;
    background: #dc2626;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    border: 2px solid #000;
}

.user-name-display[b-b1k9eux523] {
    font-weight: 700;
    color: #000;
    font-size: 14px;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-arrow[b-b1k9eux523] {
    font-size: 10px;
    color: #000;
    font-weight: 900;
    transition: transform 0.2s;
}

/* Dropdown Menu */
.user-dropdown[b-b1k9eux523] {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 4px solid #000;
    box-shadow: 6px 6px 0 #000;
    min-width: 280px;
    z-index: 1000;
    animation: dropdownSlide-b-b1k9eux523 0.2s ease-out;
}

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

/* Dropdown Header */
.dropdown-header[b-b1k9eux523] {
    padding: 16px;
    background: #f0f0f0;
}

.dropdown-user-info[b-b1k9eux523] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dropdown-avatar[b-b1k9eux523] {
    width: 48px;
    height: 48px;
    background: #dc2626;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    border: 3px solid #000;
    flex-shrink: 0;
}

.dropdown-details[b-b1k9eux523] {
    flex: 1;
    min-width: 0;
}

.dropdown-name[b-b1k9eux523] {
    font-weight: 900;
    color: #000;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-email[b-b1k9eux523] {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-divider[b-b1k9eux523] {
    height: 3px;
    background: #000;
}

/* Dropdown Items */
.dropdown-items[b-b1k9eux523] {
    padding: 8px;
}

.dropdown-item[b-b1k9eux523] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    background: none;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
}

.dropdown-item:hover[b-b1k9eux523] {
    background: #ffd93d;
    border: 2px solid #000;
    transform: translateX(4px);
}

.logout-item:hover[b-b1k9eux523] {
    background: #ffebee;
    border-color: #dc2626;
}

.item-icon[b-b1k9eux523] {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.item-text[b-b1k9eux523] {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Login Button (Not Authorized) - Pop Art Red */
.btn-login[b-b1k9eux523] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #dc2626;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    border: 3px solid #000;
    box-shadow: 4px 4px 0 #991b1b;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-login:hover[b-b1k9eux523] {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #991b1b;
}

.login-icon[b-b1k9eux523] {
    font-size: 18px;
}

.login-text[b-b1k9eux523] {
    letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .user-name-display[b-b1k9eux523] {
        max-width: 100px;
    }

    .user-dropdown[b-b1k9eux523] {
        min-width: 240px;
        right: -20px;
    }

    .dropdown-name[b-b1k9eux523] {
        font-size: 14px;
    }
}

/* /Components/Pages/Admin/CurationDashboard.razor.rz.scp.css */
.curation-dashboard[b-2wugq6ujb8] {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.dashboard-header[b-2wugq6ujb8] {
    margin-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 1rem;
}

.dashboard-header h1[b-2wugq6ujb8] {
    margin: 0 0 0.5rem 0;
    color: #212529;
    font-size: 2rem;
}

.dashboard-header .lead[b-2wugq6ujb8] {
    margin: 0;
    color: #6c757d;
}

/* Filter Bar */
.filter-bar[b-2wugq6ujb8] {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.filter-bar .form-label[b-2wugq6ujb8] {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

/* Loading State */
.loading-state[b-2wugq6ujb8] {
    text-align: center;
    padding: 4rem 2rem;
}

.loading-state .spinner-border[b-2wugq6ujb8] {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

/* Sessions Grid */
.sessions-grid[b-2wugq6ujb8] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Session Card */
.session-card[b-2wugq6ujb8] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.session-card:hover[b-2wugq6ujb8] {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.session-card .card-header[b-2wugq6ujb8] {
    padding: 1.25rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
}

.session-title[b-2wugq6ujb8] {
    margin: 0;
    font-size: 1.125rem;
    color: #212529;
    font-weight: 600;
    flex: 1;
}

/* Status Badges */
.status-badge[b-2wugq6ujb8] {
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.status-badge.status-pendingcuration[b-2wugq6ujb8] {
    background-color: #ffc107;
    color: #000;
}

.status-badge.status-incuration[b-2wugq6ujb8] {
    background-color: #17a2b8;
    color: white;
}

.status-badge.status-readyforreview[b-2wugq6ujb8] {
    background-color: #6f42c1;
    color: white;
}

.status-badge.status-published[b-2wugq6ujb8] {
    background-color: #28a745;
    color: white;
}

.status-badge.status-failed[b-2wugq6ujb8] {
    background-color: #dc3545;
    color: white;
}

.session-card .card-body[b-2wugq6ujb8] {
    padding: 1.25rem;
    flex: 1;
}

.session-meta[b-2wugq6ujb8] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.meta-item[b-2wugq6ujb8] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.875rem;
}

.meta-item i[b-2wugq6ujb8] {
    width: 16px;
    text-align: center;
}

/* Progress Section */
.progress-section[b-2wugq6ujb8] {
    margin-bottom: 1rem;
}

.progress-label[b-2wugq6ujb8] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.progress[b-2wugq6ujb8] {
    height: 8px;
    border-radius: 4px;
    background-color: #e9ecef;
}

.progress-bar[b-2wugq6ujb8] {
    background-color: #007bff;
    transition: width 0.3s ease;
}

/* Content Indicators */
.content-indicators[b-2wugq6ujb8] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.indicator[b-2wugq6ujb8] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.813rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.indicator.complete[b-2wugq6ujb8] {
    background-color: #d4edda;
    color: #155724;
}

.indicator.incomplete[b-2wugq6ujb8] {
    background-color: #f8d7da;
    color: #721c24;
}

.indicator i[b-2wugq6ujb8] {
    font-size: 1rem;
}

.content-locked-badge[b-2wugq6ujb8] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background-color: #fff3cd;
    color: #856404;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    font-size: 0.813rem;
    font-weight: 600;
}

.session-card .card-footer[b-2wugq6ujb8] {
    padding: 1rem 1.25rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 0.5rem;
    background-color: #f8f9fa;
}

.session-card .card-footer .btn[b-2wugq6ujb8] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

/* Pagination */
.pagination-controls[b-2wugq6ujb8] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.page-info[b-2wugq6ujb8] {
    color: #6c757d;
    font-size: 0.875rem;
}

/* No Sessions State */
.no-sessions[b-2wugq6ujb8] {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 8px;
}

.no-sessions i[b-2wugq6ujb8] {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.no-sessions p[b-2wugq6ujb8] {
    font-size: 1.125rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* /Components/Pages/Admin/CurationWorkspace.razor.rz.scp.css */
.curation-workspace[b-awewa8m5fc] {
    padding: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

/* Workspace Container with Sidebar Layout */
.workspace-container[b-awewa8m5fc] {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
}

.workspace-main[b-awewa8m5fc] {
    min-width: 0; /* Prevents grid overflow */
}

.workspace-sidebar[b-awewa8m5fc] {
    position: sticky;
    top: 2rem;
    align-self: start;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

/* Header */
.workspace-header[b-awewa8m5fc] {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.header-content[b-awewa8m5fc] {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.session-info[b-awewa8m5fc] {
    flex: 1;
}

.session-info h1[b-awewa8m5fc] {
    margin: 0 0 0.5rem 0;
    font-size: 1.75rem;
    color: #212529;
}

.session-badges[b-awewa8m5fc] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.completion-summary[b-awewa8m5fc] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.completion-label[b-awewa8m5fc] {
    color: #6c757d;
    font-size: 0.875rem;
}

.completion-percentage[b-awewa8m5fc] {
    font-size: 1.5rem;
    color: #007bff;
    min-width: 60px;
}

.completion-summary .progress[b-awewa8m5fc] {
    flex: 1;
    height: 10px;
}

/* Tabs */
.workspace-tabs[b-awewa8m5fc] {
    display: flex;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1rem 0 1rem;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}

.tab-btn[b-awewa8m5fc] {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: #6c757d;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover[b-awewa8m5fc] {
    color: #007bff;
    background-color: #f8f9fa;
}

.tab-btn.active[b-awewa8m5fc] {
    color: #007bff;
    border-bottom-color: #007bff;
}

/* Tab Content */
.workspace-content[b-awewa8m5fc] {
    background: white;
    padding: 2rem;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-height: 500px;
}

.tab-pane h3[b-awewa8m5fc] {
    margin: 0 0 1.5rem 0;
    color: #212529;
}

/* Overview */
.overview-grid[b-awewa8m5fc] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.overview-item[b-awewa8m5fc] {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.overview-item strong[b-awewa8m5fc] {
    color: #495057;
    margin-bottom: 0.375rem;
}

.overview-item a[b-awewa8m5fc] {
    color: #007bff;
    text-decoration: none;
}

.overview-item a:hover[b-awewa8m5fc] {
    text-decoration: underline;
}

.description-section[b-awewa8m5fc] {
    margin-top: 2rem;
}

.description-section h4[b-awewa8m5fc] {
    margin-bottom: 1rem;
    color: #495057;
}

/* Quote */
.quote-preview[b-awewa8m5fc] {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid #007bff;
    border-radius: 4px;
}

.quote-preview blockquote[b-awewa8m5fc] {
    margin: 0 0 1rem 0;
    font-size: 1.125rem;
    font-style: italic;
    color: #212529;
}

/* Highlights */
.highlights-list[b-awewa8m5fc] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item[b-awewa8m5fc] {
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid;
}

.highlight-item.highlight-keyinsight[b-awewa8m5fc] {
    background-color: #d1ecf1;
    border-color: #17a2b8;
}

.highlight-item.highlight-importantfeedback[b-awewa8m5fc] {
    background-color: #fff3cd;
    border-color: #ffc107;
}

.highlight-item.highlight-actionableitem[b-awewa8m5fc] {
    background-color: #f8d7da;
    border-color: #dc3545;
}

.highlight-header[b-awewa8m5fc] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.highlight-type-badge[b-awewa8m5fc] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    background-color: rgba(0,0,0,0.1);
}

.highlight-text[b-awewa8m5fc] {
    margin: 0.5rem 0;
    color: #212529;
}

/* Tags */
.tags-list[b-awewa8m5fc] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-badge[b-awewa8m5fc] {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Action Items */
.action-items-list[b-awewa8m5fc] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-item[b-awewa8m5fc] {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.action-item-header[b-awewa8m5fc] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.priority-badge[b-awewa8m5fc] {
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
}

.priority-badge.priority-high[b-awewa8m5fc] {
    background-color: #dc3545;
    color: white;
}

.priority-badge.priority-medium[b-awewa8m5fc] {
    background-color: #ffc107;
    color: #000;
}

.priority-badge.priority-low[b-awewa8m5fc] {
    background-color: #28a745;
    color: white;
}

/* Loading State */
.loading-state[b-awewa8m5fc] {
    text-align: center;
    padding: 4rem 2rem;
}

.loading-state .spinner-border[b-awewa8m5fc] {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

/* /Components/Pages/Admin/PipelineHealthDashboard.razor.rz.scp.css */
.pipeline-dashboard[b-f2poyekqgr] {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.dashboard-header[b-f2poyekqgr] {
    margin-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 1rem;
}

.dashboard-header h1[b-f2poyekqgr] {
    margin: 0 0 0.5rem 0;
    color: #212529;
    font-size: 2rem;
}

.dashboard-header .lead[b-f2poyekqgr] {
    margin: 0;
    color: #6c757d;
}

/* Loading State */
.loading-state[b-f2poyekqgr] {
    text-align: center;
    padding: 4rem 2rem;
}

.loading-state .spinner-border[b-f2poyekqgr] {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

/* Status Cards */
.status-cards[b-f2poyekqgr] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.status-card[b-f2poyekqgr] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid transparent;
    position: relative;
}

.status-card:hover[b-f2poyekqgr] {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.status-card.active[b-f2poyekqgr] {
    border-color: #007bff;
    box-shadow: 0 4px 16px rgba(0,123,255,0.2);
}

.status-card.has-failures[b-f2poyekqgr] {
    border-color: #dc3545;
    animation: pulse-border-b-f2poyekqgr 2s infinite;
}

@keyframes pulse-border-b-f2poyekqgr {
    0%, 100% { border-color: #dc3545; }
    50% { border-color: #f5c6cb; }
}

.status-icon[b-f2poyekqgr] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.status-icon.submitted[b-f2poyekqgr] {
    background-color: #cff4fc;
    color: #055160;
}

.status-icon.processing[b-f2poyekqgr] {
    background-color: #fff3cd;
    color: #664d03;
}

.status-icon.ready[b-f2poyekqgr] {
    background-color: #d1e7dd;
    color: #0f5132;
}

.status-icon.published[b-f2poyekqgr] {
    background-color: #d4edda;
    color: #155724;
}

.status-icon.failed[b-f2poyekqgr] {
    background-color: #f8d7da;
    color: #842029;
}

.status-info[b-f2poyekqgr] {
    display: flex;
    flex-direction: column;
}

.status-count[b-f2poyekqgr] {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    color: #212529;
}

.status-label[b-f2poyekqgr] {
    font-size: 0.813rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.failure-badge[b-f2poyekqgr] {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 0.688rem;
    padding: 0.25rem 0.5rem;
}

/* Total Bar */
.total-bar[b-f2poyekqgr] {
    display: flex;
    align-items: center;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.total-label[b-f2poyekqgr] {
    font-weight: 600;
    color: #495057;
    margin-right: 0.75rem;
}

.total-count[b-f2poyekqgr] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
}

/* Session List Section */
.session-list-section[b-f2poyekqgr] {
    margin-top: 1rem;
}

.section-title[b-f2poyekqgr] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Status Badges */
.status-badge[b-f2poyekqgr] {
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.status-submitted[b-f2poyekqgr] {
    background-color: #cff4fc;
    color: #055160;
}

.status-badge.status-processing[b-f2poyekqgr] {
    background-color: #fff3cd;
    color: #664d03;
}

.status-badge.status-ready[b-f2poyekqgr] {
    background-color: #d1e7dd;
    color: #0f5132;
}

.status-badge.status-published[b-f2poyekqgr] {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.status-failed[b-f2poyekqgr] {
    background-color: #f8d7da;
    color: #842029;
}

/* Session List */
.session-list[b-f2poyekqgr] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.session-row[b-f2poyekqgr] {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.session-row:last-child[b-f2poyekqgr] {
    border-bottom: none;
}

.session-row:hover[b-f2poyekqgr] {
    background-color: #f8f9fa;
}

.session-row-title[b-f2poyekqgr] {
    flex: 1;
    min-width: 0;
}

.session-row-title strong[b-f2poyekqgr] {
    color: #212529;
    font-size: 0.938rem;
}

.session-row-meta[b-f2poyekqgr] {
    display: flex;
    gap: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.session-row-meta .meta-item[b-f2poyekqgr] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #6c757d;
    font-size: 0.813rem;
    white-space: nowrap;
}

.session-row-action[b-f2poyekqgr] {
    color: #adb5bd;
    font-size: 1.25rem;
}

/* Pagination */
.pagination-controls[b-f2poyekqgr] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    margin-top: 1rem;
}

.page-info[b-f2poyekqgr] {
    color: #6c757d;
    font-size: 0.875rem;
}

/* No Sessions / Select Prompt */
.no-sessions[b-f2poyekqgr],
.select-prompt[b-f2poyekqgr] {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.no-sessions i[b-f2poyekqgr],
.select-prompt i[b-f2poyekqgr] {
    font-size: 3rem;
    color: #adb5bd;
    margin-bottom: 1rem;
    display: block;
}

.no-sessions p[b-f2poyekqgr],
.select-prompt p[b-f2poyekqgr] {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .status-cards[b-f2poyekqgr] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .status-cards[b-f2poyekqgr] {
        grid-template-columns: repeat(2, 1fr);
    }

    .session-row-meta[b-f2poyekqgr] {
        display: none;
    }
}
/* /Components/Pages/Admin/TagAdmin.razor.rz.scp.css */
/* WO-91: Tag Administration page styles */
.tag-admin[b-687mfuoxaz] { max-width: 1200px; margin: 0 auto; padding: 2rem; }
.admin-header[b-687mfuoxaz] { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.admin-header h2[b-687mfuoxaz] { margin: 0; display: flex; align-items: center; gap: 0.5rem; }

.analytics-bar[b-687mfuoxaz] { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.stat-card[b-687mfuoxaz] { background: #fff; border: 1px solid #dee2e6; border-radius: 8px; padding: 1rem; text-align: center; }
.stat-value[b-687mfuoxaz] { display: block; font-size: 1.75rem; font-weight: 700; color: #0d6efd; }
.stat-label[b-687mfuoxaz] { font-size: 0.8125rem; color: #6c757d; text-transform: uppercase; letter-spacing: 0.5px; }

.filter-bar[b-687mfuoxaz] { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.search-box[b-687mfuoxaz] { position: relative; flex: 1; }
.search-box i[b-687mfuoxaz] { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); color: #6c757d; }
.search-box input[b-687mfuoxaz] { padding-left: 2.25rem; }
.filter-select[b-687mfuoxaz] { max-width: 200px; }

.tag-grid[b-687mfuoxaz] { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.tag-card[b-687mfuoxaz] { background: #fff; border: 1px solid #dee2e6; border-radius: 8px; overflow: hidden; transition: box-shadow 0.2s; }
.tag-card:hover[b-687mfuoxaz] { box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.tag-card-header[b-687mfuoxaz] { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; border-bottom: 1px solid #f0f0f0; }
.tag-color[b-687mfuoxaz] { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.tag-card-name[b-687mfuoxaz] { font-weight: 600; flex: 1; }
.tag-name-edit[b-687mfuoxaz] { flex: 1; }
.tag-category-badge[b-687mfuoxaz] { font-size: 0.6875rem; padding: 0.125rem 0.5rem; background: #e9ecef; border-radius: 12px; color: #495057; }
.tag-card-body[b-687mfuoxaz] { padding: 0.75rem 1rem; min-height: 2rem; }
.tag-description[b-687mfuoxaz] { margin: 0; font-size: 0.875rem; color: #6c757d; }
.edit-color-row[b-687mfuoxaz] { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; font-size: 0.875rem; }
.tag-card-footer[b-687mfuoxaz] { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 1rem; border-top: 1px solid #f0f0f0; background: #fafafa; }
.usage-badge[b-687mfuoxaz] { font-size: 0.8125rem; color: #6c757d; display: flex; align-items: center; gap: 0.25rem; }
.tag-actions[b-687mfuoxaz], .edit-actions[b-687mfuoxaz] { display: flex; gap: 0.25rem; }

.loading-state[b-687mfuoxaz], .empty-state[b-687mfuoxaz] { grid-column: 1 / -1; text-align: center; padding: 3rem; color: #6c757d; }
.loading-state .spinner-border[b-687mfuoxaz] { margin-bottom: 1rem; }
.empty-state i[b-687mfuoxaz] { font-size: 3rem; margin-bottom: 1rem; display: block; }

@media (max-width: 768px) {
    .analytics-bar[b-687mfuoxaz] { grid-template-columns: repeat(2, 1fr); }
    .filter-bar[b-687mfuoxaz] { flex-direction: column; }
    .filter-select[b-687mfuoxaz] { max-width: none; }
}
/* /Components/Pages/Admin/UserManagement.razor.rz.scp.css */
.user-management[b-pz0po08u74] { padding: 24px; max-width: 1400px; margin: 0 auto; }
.search-bar[b-pz0po08u74] { display: flex; gap: 12px; margin-bottom: 24px; }
.search-input[b-pz0po08u74], .filter-select[b-pz0po08u74] { padding: 8px 12px; border: 1px solid #ddd; border-radius: 4px; }
.search-input[b-pz0po08u74] { flex: 1; }
.users-table[b-pz0po08u74] { width: 100%; border-collapse: collapse; background: white; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.users-table th[b-pz0po08u74] { background: #f5f5f5; padding: 12px; text-align: left; font-weight: 600; }
.users-table td[b-pz0po08u74] { padding: 12px; border-top: 1px solid #eee; }
.role-badge[b-pz0po08u74] { padding: 4px 12px; border-radius: 12px; font-size: 12px; font-weight: 600; }
.role-staff[b-pz0po08u74] { background: #E3F2FD; color: #1976D2; }
.role-curator[b-pz0po08u74] { background: #F3E5F5; color: #7B1FA2; }
.role-admin[b-pz0po08u74] { background: #FFEBEE; color: #C62828; }
.self-label[b-pz0po08u74] { color: #999; font-style: italic; font-size: 13px; }
.btn-change-role[b-pz0po08u74] { padding: 6px 12px; background: #667eea; color: white; border: none; border-radius: 4px; cursor: pointer; }
.btn-change-role:hover[b-pz0po08u74] { background: #5a6fd6; }
.modal-overlay[b-pz0po08u74] { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; z-index: 1000; }
.modal-content[b-pz0po08u74] { background: white; padding: 24px; border-radius: 8px; max-width: 400px; width: 90%; }
.modal-actions[b-pz0po08u74] { display: flex; gap: 12px; margin-top: 16px; }
.btn-confirm[b-pz0po08u74] { padding: 8px 16px; background: #4CAF50; color: white; border: none; border-radius: 4px; cursor: pointer; }
.btn-confirm:disabled[b-pz0po08u74] { background: #ccc; cursor: not-allowed; }
.btn-cancel[b-pz0po08u74] { padding: 8px 16px; background: #757575; color: white; border: none; border-radius: 4px; cursor: pointer; }
.btn-cancel:disabled[b-pz0po08u74] { opacity: 0.6; cursor: not-allowed; }
.confirmation-warning[b-pz0po08u74] { background: #FFF3E0; border: 1px solid #FFE0B2; border-radius: 4px; padding: 8px 12px; margin-top: 12px; font-size: 13px; color: #E65100; }
.role-select[b-pz0po08u74] { width: 100%; padding: 8px 12px; border: 1px solid #ddd; border-radius: 4px; margin-top: 8px; }
.status-banner[b-pz0po08u74] { padding: 12px 16px; border-radius: 6px; margin-bottom: 16px; display: flex; justify-content: space-between; align-items: center; }
.status-success[b-pz0po08u74] { background: #E8F5E9; color: #2E7D32; border: 1px solid #C8E6C9; }
.status-error[b-pz0po08u74] { background: #FFEBEE; color: #C62828; border: 1px solid #FFCDD2; }
.btn-dismiss[b-pz0po08u74] { background: none; border: none; font-size: 18px; cursor: pointer; color: inherit; }
.audit-log[b-pz0po08u74] { margin-top: 32px; padding: 16px; background: #f9f9f9; border-radius: 8px; }
.audit-entry[b-pz0po08u74] { padding: 8px; border-bottom: 1px solid #eee; font-size: 14px; }
.audit-time[b-pz0po08u74] { color: #666; margin-right: 12px; }
.no-logs[b-pz0po08u74] { color: #999; font-style: italic; }
/* /Components/Pages/Gallery.razor.rz.scp.css */
/* WO-123: Gallery Styles */

.gallery-container[b-qqe54gz1t5] {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-header[b-qqe54gz1t5] {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-header h1[b-qqe54gz1t5] {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* WO-273: Improved contrast from #7f8c8d to #5a6268 for WCAG AA */
.gallery-subtitle[b-qqe54gz1t5] {
    font-size: 1.25rem;
    color: #5a6268;
}

/* Gallery Controls - Search + Filters (WO-131, WO-140, WO-144) */
.gallery-controls[b-qqe54gz1t5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* WO-149: Filter extras row */
.filter-extras[b-qqe54gz1t5] {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

/* Active Filters Bar */
.active-filters-bar[b-qqe54gz1t5] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #555;
}

.result-summary strong[b-qqe54gz1t5] {
    color: #2c3e50;
}

/* WO-273: Improved contrast from #95a5a6 to #6c757d for WCAG AA */
.execution-time[b-qqe54gz1t5] {
    color: #6c757d;
    font-size: 0.8rem;
}

/* Album Grid - Responsive (WO-129: 6/4/2 column breakpoints) */
.album-grid[b-qqe54gz1t5] {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 1023px) {
    .album-grid[b-qqe54gz1t5] {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .album-grid[b-qqe54gz1t5] {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Loading State */
.loading-state[b-qqe54gz1t5] {
    text-align: center;
    padding: 4rem 2rem;
}

.loading-state p[b-qqe54gz1t5] {
    margin-top: 1rem;
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* Empty State */
.empty-state[b-qqe54gz1t5] {
    text-align: center;
    padding: 4rem 2rem;
    color: #7f8c8d;
}

.empty-state i[b-qqe54gz1t5] {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.empty-state h3[b-qqe54gz1t5] {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

/* WO-145/150: Infinite scroll sentinel and loading */
.scroll-sentinel[b-qqe54gz1t5] {
    height: 1px;
    margin-top: 1rem;
}

.loading-more[b-qqe54gz1t5] {
    text-align: center;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* WO-150: Performance — content-visibility for off-screen cards */
[b-qqe54gz1t5] .album-cover-card {
    content-visibility: auto;
    contain-intrinsic-size: 0 350px;
}

/* WO-128: Tab placeholder panels */
.tab-placeholder[b-qqe54gz1t5] {
    text-align: center;
    padding: 4rem 2rem;
    color: #7f8c8d;
}

.tab-placeholder i[b-qqe54gz1t5] {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
    display: block;
}

.tab-placeholder h3[b-qqe54gz1t5] {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* WO-155: Accessibility */
.skip-to-content[b-qqe54gz1t5] {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100;
    padding: 0.5rem 1rem;
    background: #007bff;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 0 0 4px 0;
}

.skip-to-content:focus[b-qqe54gz1t5] {
    left: 0;
}

[b-qqe54gz1t5] .album-cover-card:focus-visible {
    outline: 3px solid #007bff;
    outline-offset: 2px;
    border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
    [b-qqe54gz1t5] .album-cover-card,
    [b-qqe54gz1t5] .album-cover-card * {
        transition: none !important;
        animation: none !important;
    }
}



/* /Components/Pages/Login.razor.rz.scp.css */
/* JohnReacts Login Page - Pop Art Design */

.login-page[b-76zhutly23] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    padding: 20px;
}

/* Background Decorations - Pop Art Style */
.background-decoration[b-76zhutly23] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.decoration-circle[b-76zhutly23] {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1[b-76zhutly23] {
    width: 300px;
    height: 300px;
    background: #FF6B6B;
    top: -100px;
    right: -100px;
    animation: float-b-76zhutly23 6s ease-in-out infinite;
}

.circle-2[b-76zhutly23] {
    width: 200px;
    height: 200px;
    background: #4ECDC4;
    bottom: -50px;
    left: -50px;
    animation: float-b-76zhutly23 8s ease-in-out infinite reverse;
}

.circle-3[b-76zhutly23] {
    width: 150px;
    height: 150px;
    background: #FFE66D;
    top: 50%;
    left: 10%;
    animation: float-b-76zhutly23 10s ease-in-out infinite;
}

@keyframes float-b-76zhutly23 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.decoration-dots[b-76zhutly23] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Main Login Container */
.login-container[b-76zhutly23] {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    animation: slideIn-b-76zhutly23 0.5s ease-out;
}

@keyframes slideIn-b-76zhutly23 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Section */
.login-header[b-76zhutly23] {
    text-align: center;
    margin-bottom: 32px;
}

.brand-logo[b-76zhutly23] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.logo-icon[b-76zhutly23] {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    animation: bounce-b-76zhutly23 2s ease-in-out infinite;
}

@keyframes bounce-b-76zhutly23 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.brand-name[b-76zhutly23] {
    font-size: 36px;
    font-weight: 800;
    color: #2C3E50;
    margin: 0;
    font-family: 'Arial Black', 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 3px 3px 0px #FF6B6B, 
                 6px 6px 0px #4ECDC4;
}

.brand-tagline[b-76zhutly23] {
    font-size: 16px;
    color: #7F8C8D;
    margin: 0;
    font-weight: 500;
}

/* Welcome Section */
.welcome-section[b-76zhutly23] {
    text-align: center;
    margin-bottom: 32px;
}

.welcome-title[b-76zhutly23] {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 12px 0;
}

.welcome-text[b-76zhutly23] {
    font-size: 15px;
    color: #7F8C8D;
    line-height: 1.6;
    margin: 0;
}

/* Sign In Section */
.signin-section[b-76zhutly23] {
    margin-bottom: 24px;
}

/* Status Messages */
.status-message[b-76zhutly23] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    margin-top: 20px;
    animation: fadeIn-b-76zhutly23 0.3s ease-out;
}

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

.status-message.loading[b-76zhutly23] {
    background-color: #EBF5FB;
    border: 1px solid #AED6F1;
    color: #21618C;
}

.status-message.error[b-76zhutly23] {
    background-color: #FADBD8;
    border: 1px solid #F1948A;
    color: #922B21;
    flex-direction: column;
    align-items: flex-start;
}

.status-message.success[b-76zhutly23] {
    background-color: #D5F4E6;
    border: 1px solid #82E0AA;
    color: #0E6655;
}

.status-icon[b-76zhutly23] {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.status-icon svg[b-76zhutly23] {
    width: 100%;
    height: 100%;
}

.spinner[b-76zhutly23] {
    width: 20px;
    height: 20px;
    border: 3px solid #AED6F1;
    border-top-color: #21618C;
    border-radius: 50%;
    animation: spin-b-76zhutly23 0.8s linear infinite;
    display: block;
}

@keyframes spin-b-76zhutly23 {
    to {
        transform: rotate(360deg);
    }
}

.error-content[b-76zhutly23] {
    flex: 1;
}

.error-title[b-76zhutly23] {
    font-weight: 600;
    margin: 0 0 4px 0;
    font-size: 14px;
}

.error-details[b-76zhutly23] {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

/* Already Authenticated Message */
.already-authenticated[b-76zhutly23] {
    text-align: center;
    padding: 32px;
    background: #D5F4E6;
    border: 4px solid #000;
    box-shadow: 6px 6px 0 #000;
    margin-top: 24px;
}

.auth-icon[b-76zhutly23] {
    width: 60px;
    height: 60px;
    background: #0E6655;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    margin: 0 auto 16px;
    border: 3px solid #000;
}

.auth-title[b-76zhutly23] {
    font-size: 24px;
    font-weight: 900;
    color: #0E6655;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.auth-text[b-76zhutly23] {
    font-size: 16px;
    color: #0E6655;
    margin: 0 0 24px;
}

.btn-continue[b-76zhutly23] {
    display: inline-block;
    padding: 12px 24px;
    background: #0E6655;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    border: 3px solid #000;
    box-shadow: 3px 3px 0 #000;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
    font-family: inherit;
    appearance: none;
}

.btn-continue:hover[b-76zhutly23] {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 #000;
}

/* Comic Book Loading Animation */
.loading-animation[b-76zhutly23] {
    margin-top: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 4px solid #000;
    box-shadow: 6px 6px 0 #000;
    text-align: center;
}

.loading-content[b-76zhutly23] {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: center;
}

.pop-bubble[b-76zhutly23] {
    width: 60px;
    height: 60px;
    background: #5BC0BE;
    border: 3px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pop-b-76zhutly23 1.5s ease-in-out infinite;
    position: relative;
}

.pop-bubble:nth-child(2)[b-76zhutly23] {
    background: #F8B195;
    animation-delay: 0.2s;
}

.pop-bubble:nth-child(3)[b-76zhutly23] {
    background: #F67280;
    animation-delay: 0.4s;
}

.pop-bubble:nth-child(4)[b-76zhutly23] {
    background: #C06C84;
    animation-delay: 0.6s;
}

.pop-bubble:nth-child(5)[b-76zhutly23] {
    background: #6C5B7B;
    animation-delay: 0.8s;
}

.bubble-text[b-76zhutly23] {
    font-size: 14px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

@keyframes pop-b-76zhutly23 {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.2) translateY(-8px);
    }
}

.loading-bar[b-76zhutly23] {
    width: 100%;
    max-width: 300px;
    height: 16px;
    background: #fff;
    border: 3px solid #000;
    border-radius: 0;
    overflow: hidden;
    margin: 0 auto 16px;
    box-shadow: 3px 3px 0 #000;
}

.loading-progress[b-76zhutly23] {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b 0%, #ffd93d 50%, #4ecdc4 100%);
    background-size: 200% 100%;
    animation: loading-b-76zhutly23 3s ease-out forwards;
}

@keyframes loading-b-76zhutly23 {
    0% {
        width: 0%;
        background-position: 0% 50%;
    }
    100% {
        width: 100%;
        background-position: 100% 50%;
    }
}

.loading-text[b-76zhutly23] {
    font-size: 18px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Info Section */
.info-section[b-76zhutly23] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #ECF0F1;
}

.info-card[b-76zhutly23] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-icon[b-76zhutly23] {
    width: 24px;
    height: 24px;
    color: #667eea;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-content h3[b-76zhutly23] {
    font-size: 14px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0 0 4px 0;
}

.info-content p[b-76zhutly23] {
    font-size: 13px;
    color: #7F8C8D;
    margin: 0;
    line-height: 1.5;
}

/* Footer */
.login-footer[b-76zhutly23] {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #ECF0F1;
}

.footer-text[b-76zhutly23] {
    font-size: 12px;
    color: #95A5A6;
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.footer-link[b-76zhutly23] {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-link:hover[b-76zhutly23] {
    color: #764ba2;
    text-decoration: underline;
}

.footer-copyright[b-76zhutly23] {
    font-size: 11px;
    color: #BDC3C7;
    margin: 0;
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .login-page[b-76zhutly23] {
        padding: 16px;
    }

    .login-container[b-76zhutly23] {
        padding: 32px 24px;
    }

    .brand-name[b-76zhutly23] {
        font-size: 28px;
        text-shadow: 2px 2px 0px #FF6B6B, 
                     4px 4px 0px #4ECDC4;
    }

    .logo-icon[b-76zhutly23] {
        width: 60px;
        height: 60px;
    }

    .welcome-title[b-76zhutly23] {
        font-size: 20px;
    }

    .welcome-text[b-76zhutly23] {
        font-size: 14px;
    }

    .info-section[b-76zhutly23] {
        margin-top: 24px;
        padding-top: 24px;
    }

    .circle-1[b-76zhutly23] {
        width: 200px;
        height: 200px;
    }

    .circle-2[b-76zhutly23] {
        width: 150px;
        height: 150px;
    }

    .circle-3[b-76zhutly23] {
        display: none;
    }
}

/* Tablet */
@media (min-width: 481px) and (max-width: 768px) {
    .login-container[b-76zhutly23] {
        padding: 40px 36px;
    }

    .brand-name[b-76zhutly23] {
        font-size: 32px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .login-container[b-76zhutly23] {
        background: #2C3E50;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .brand-name[b-76zhutly23] {
        color: #ECF0F1;
    }

    .brand-tagline[b-76zhutly23],
    .welcome-text[b-76zhutly23],
    .info-content p[b-76zhutly23] {
        color: #BDC3C7;
    }

    .welcome-title[b-76zhutly23],
    .info-content h3[b-76zhutly23] {
        color: #ECF0F1;
    }

    .info-section[b-76zhutly23] {
        border-top-color: #34495E;
    }

    .login-footer[b-76zhutly23] {
        border-top-color: #34495E;
    }

    .footer-text[b-76zhutly23] {
        color: #7F8C8D;
    }

    .footer-copyright[b-76zhutly23] {
        color: #7F8C8D;
    }

    .status-message.loading[b-76zhutly23] {
        background-color: #1F3A5F;
        border-color: #2E5C8A;
        color: #AED6F1;
    }

    .status-message.error[b-76zhutly23] {
        background-color: #4A2C2A;
        border-color: #7B3F3F;
        color: #F1948A;
    }

    .status-message.success[b-76zhutly23] {
        background-color: #1F4037;
        border-color: #2D5F4E;
        color: #82E0AA;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .login-container[b-76zhutly23] {
        border: 2px solid #2C3E50;
    }

    .brand-name[b-76zhutly23] {
        text-shadow: 2px 2px 0px #000;
    }

    .footer-link[b-76zhutly23] {
        text-decoration: underline;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .login-container[b-76zhutly23],
    .status-message[b-76zhutly23] {
        animation: none;
    }

    .logo-icon[b-76zhutly23],
    .decoration-circle[b-76zhutly23] {
        animation: none;
    }

    .spinner[b-76zhutly23] {
        animation: none;
        border-top-color: transparent;
        border-right-color: #21618C;
    }
}

/* Print Styles */
@media print {
    .login-page[b-76zhutly23] {
        background: white;
    }

    .background-decoration[b-76zhutly23] {
        display: none;
    }

    .login-container[b-76zhutly23] {
        box-shadow: none;
        border: 1px solid #2C3E50;
    }

    .signin-section[b-76zhutly23],
    .status-message[b-76zhutly23] {
        display: none;
    }
}

/* /Components/Pages/MySubmissions.razor.rz.scp.css */
.my-submissions-container[b-l3z74xia83] {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.submissions-header[b-l3z74xia83] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-title[b-l3z74xia83] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-title h1[b-l3z74xia83] {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
}

.submission-count[b-l3z74xia83] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.75rem;
    height: 1.75rem;
    padding: 0 0.5rem;
    border-radius: 1rem;
    background: #e9ecef;
    color: #495057;
    font-size: 0.85rem;
    font-weight: 600;
}

.submissions-controls[b-l3z74xia83] {
    margin-bottom: 1rem;
}

.sort-toggle[b-l3z74xia83] {
    display: inline-flex;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    overflow: hidden;
}

.sort-btn[b-l3z74xia83] {
    padding: 0.4rem 1rem;
    border: none;
    background: #fff;
    color: #495057;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color 0.15s, color 0.15s;
}

.sort-btn:not(:last-child)[b-l3z74xia83] {
    border-right: 1px solid #dee2e6;
}

.sort-btn.active[b-l3z74xia83] {
    background: #0d6efd;
    color: #fff;
}

.sort-btn:hover:not(.active)[b-l3z74xia83] {
    background: #f8f9fa;
}

/* Loading skeleton */
.loading-skeleton[b-l3z74xia83] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.skeleton-item[b-l3z74xia83] {
    height: 4.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer-b-l3z74xia83 1.5s infinite;
}

@keyframes shimmer-b-l3z74xia83 {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Error state */
.error-state[b-l3z74xia83] {
    text-align: center;
    padding: 3rem 1rem;
    color: #dc3545;
}

.error-state i[b-l3z74xia83] {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.error-state p[b-l3z74xia83] {
    margin-bottom: 1rem;
    color: #495057;
}

/* Empty state */
.empty-state[b-l3z74xia83] {
    text-align: center;
    padding: 4rem 1rem;
    color: #6c757d;
}

.empty-state i[b-l3z74xia83] {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.empty-state h3[b-l3z74xia83] {
    font-size: 1.25rem;
    color: #343a40;
    margin-bottom: 0.5rem;
}

.empty-state p[b-l3z74xia83] {
    margin-bottom: 1.5rem;
}

/* Submissions list */
.submissions-list[b-l3z74xia83] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.submission-card[b-l3z74xia83] {
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.15s;
}

.submission-card:hover[b-l3z74xia83] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.submission-card.expanded[b-l3z74xia83] {
    border-color: #0d6efd;
    box-shadow: 0 2px 12px rgba(13, 110, 253, 0.1);
}

.submission-row[b-l3z74xia83] {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
}

.submission-row:hover[b-l3z74xia83] {
    background: #f8f9fa;
}

.submission-info[b-l3z74xia83] {
    flex: 1;
    min-width: 0;
}

.submission-title[b-l3z74xia83] {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: #212529;
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.submission-meta[b-l3z74xia83] {
    display: flex;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: #6c757d;
}

.submission-status[b-l3z74xia83] {
    flex-shrink: 0;
}

.expand-icon[b-l3z74xia83] {
    color: #adb5bd;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: transform 0.15s;
}

.submission-details-panel[b-l3z74xia83] {
    animation: slideDown-b-l3z74xia83 0.2s ease-out;
}

@keyframes slideDown-b-l3z74xia83 {
    from {
        opacity: 0;
        transform: translateY(-0.5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 576px) {
    .my-submissions-container[b-l3z74xia83] {
        padding: 1rem 0.5rem;
    }

    .submissions-header[b-l3z74xia83] {
        flex-direction: column;
        align-items: flex-start;
    }

    .submission-row[b-l3z74xia83] {
        flex-wrap: wrap;
        padding: 0.75rem 1rem;
    }

    .submission-info[b-l3z74xia83] {
        width: 100%;
    }

    .submission-status[b-l3z74xia83] {
        margin-left: 0;
    }

    .expand-icon[b-l3z74xia83] {
        margin-left: auto;
    }
}
/* /Components/Pages/SessionDetail.razor.rz.scp.css */
/* WO-161: Session Detail Page Layout */

.session-detail-container[b-j240jfbczy] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

/* Breadcrumb */
.breadcrumb[b-j240jfbczy] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: #6c757d;
}

.breadcrumb a[b-j240jfbczy] {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover[b-j240jfbczy] {
    text-decoration: underline;
}

.breadcrumb .separator[b-j240jfbczy] {
    color: #adb5bd;
}

/* Curator actions bar */
.curator-actions[b-j240jfbczy] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.btn-curator-action[b-j240jfbczy] {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #7B1FA2;
    color: #fff;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-curator-action:hover[b-j240jfbczy] {
    background: #6A1B9A;
    color: #fff;
}

.breadcrumb [aria-current="page"][b-j240jfbczy] {
    color: #212529;
    font-weight: 500;
}

/* Two-column layout */
.detail-layout[b-j240jfbczy] {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    margin-top: 2rem;
}

.detail-main[b-j240jfbczy] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 0;
}

.detail-sidebar[b-j240jfbczy] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Loading skeleton */
.loading-skeleton[b-j240jfbczy] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skeleton-breadcrumb[b-j240jfbczy] {
    height: 1rem;
    width: 300px;
    background: #e9ecef;
    border-radius: 4px;
    animation: pulse-b-j240jfbczy 1.5s ease-in-out infinite;
}

.skeleton-hero[b-j240jfbczy] {
    height: 320px;
    background: #e9ecef;
    border-radius: 12px;
    animation: pulse-b-j240jfbczy 1.5s ease-in-out infinite;
}

.skeleton-content[b-j240jfbczy] {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
}

.skeleton-main[b-j240jfbczy] {
    height: 400px;
    background: #e9ecef;
    border-radius: 12px;
    animation: pulse-b-j240jfbczy 1.5s ease-in-out infinite;
}

.skeleton-sidebar[b-j240jfbczy] {
    height: 300px;
    background: #e9ecef;
    border-radius: 12px;
    animation: pulse-b-j240jfbczy 1.5s ease-in-out infinite;
}

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

/* Status messages */
.status-message[b-j240jfbczy] {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
}

.status-message i[b-j240jfbczy] {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.status-message h2[b-j240jfbczy] {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #212529;
}

.status-message.processing i[b-j240jfbczy] { color: #f39c12; }
.status-message.not-found i[b-j240jfbczy] { color: #6c757d; }
.status-message.error i[b-j240jfbczy] { color: #dc3545; }

.btn-back[b-j240jfbczy] {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
}

.btn-back:hover[b-j240jfbczy] {
    background: #0056b3;
}

/* Responsive */
@media (max-width: 992px) {
    .detail-layout[b-j240jfbczy] {
        grid-template-columns: 1fr;
    }

    .skeleton-content[b-j240jfbczy] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .session-detail-container[b-j240jfbczy] {
        padding: 1rem;
    }

    .skeleton-hero[b-j240jfbczy] {
        height: 200px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .loading-skeleton *[b-j240jfbczy] {
        animation: none !important;
    }
}
/* /Components/ProcessingWorkflow/ProcessingWorkflowMonitor.razor.rz.scp.css */
.processing-workflow-monitor[b-1n4hd01ggf] {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.workflow-header[b-1n4hd01ggf] {
    margin-bottom: 2rem;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 1rem;
}

.workflow-header h2[b-1n4hd01ggf] {
    margin: 0 0 1rem 0;
    color: #212529;
    font-size: 1.75rem;
}

.session-info[b-1n4hd01ggf] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.session-info h3[b-1n4hd01ggf] {
    margin: 0;
    font-size: 1.25rem;
    color: #495057;
}

.status-badge[b-1n4hd01ggf] {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.status-badge.status-manual_entry[b-1n4hd01ggf] {
    background-color: #ffc107;
    color: #000;
}

.status-badge.status-processing[b-1n4hd01ggf] {
    background-color: #17a2b8;
    color: #fff;
}

.status-badge.status-validation[b-1n4hd01ggf] {
    background-color: #6c757d;
    color: #fff;
}

.status-badge.status-completed[b-1n4hd01ggf] {
    background-color: #28a745;
    color: #fff;
}

.status-badge.status-failed[b-1n4hd01ggf] {
    background-color: #dc3545;
    color: #fff;
}

.loading-spinner[b-1n4hd01ggf] {
    text-align: center;
    padding: 3rem;
}

.loading-spinner .spinner-border[b-1n4hd01ggf] {
    width: 3rem;
    height: 3rem;
}

.loading-spinner p[b-1n4hd01ggf] {
    margin-top: 1rem;
    color: #6c757d;
}

.workflow-content[b-1n4hd01ggf] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.notices-section[b-1n4hd01ggf] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.alert[b-1n4hd01ggf] {
    border-radius: 4px;
    padding: 1rem;
}

/* /Components/SessionFolder/FolderStatusBadge.razor.rz.scp.css */
.folder-status-badge[b-3p7jzj7o01] {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: white;
    margin: 0.5rem 0;
}

.folder-status-badge.status-exists[b-3p7jzj7o01] {
    border-left: 4px solid #2ED573;
    background: #f0fff4;
}

.folder-status-badge.status-error[b-3p7jzj7o01] {
    border-left: 4px solid #FF4757;
    background: #fff0f0;
}

.folder-status-badge.status-not-found[b-3p7jzj7o01] {
    border-left: 4px solid #95a5a6;
    background: #f8f9fa;
}

.status-content[b-3p7jzj7o01] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-icon[b-3p7jzj7o01] {
    font-size: 1.5rem;
}

.status-info[b-3p7jzj7o01] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.status-info strong[b-3p7jzj7o01] {
    font-size: 1rem;
    color: #333;
}

.file-count[b-3p7jzj7o01],
.error-message[b-3p7jzj7o01],
.hint-text[b-3p7jzj7o01] {
    font-size: 0.85rem;
    color: #666;
}

.folder-link[b-3p7jzj7o01] {
    padding: 0.5rem 1rem;
    background: #4ECDC4;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background 0.2s;
}

.folder-link:hover[b-3p7jzj7o01] {
    background: #45B7D1;
}


/* /Components/SessionFolder/ManualFolderCreateButton.razor.rz.scp.css */
.manual-folder-create[b-lhkub17f7i] {
    margin: 1rem 0;
}

.btn-create-folder[b-lhkub17f7i] {
    padding: 0.75rem 1.5rem;
    background: #4ECDC4;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-create-folder:hover:not(:disabled)[b-lhkub17f7i] {
    background: #45B7D1;
}

.btn-create-folder:disabled[b-lhkub17f7i] {
    background: #ccc;
    cursor: not-allowed;
}

.creating-state[b-lhkub17f7i] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: #666;
}

.spinner[b-lhkub17f7i] {
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4ECDC4;
    border-radius: 50%;
    animation: spin-b-lhkub17f7i 1s linear infinite;
}

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

.confirmation-dialog[b-lhkub17f7i] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.dialog-content[b-lhkub17f7i] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.dialog-content h3[b-lhkub17f7i] {
    margin: 0 0 1rem 0;
    color: #333;
}

.dialog-content p[b-lhkub17f7i] {
    margin: 0 0 1.5rem 0;
    color: #666;
}

.dialog-actions[b-lhkub17f7i] {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-confirm[b-lhkub17f7i],
.btn-cancel[b-lhkub17f7i] {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-confirm[b-lhkub17f7i] {
    background: #4ECDC4;
    color: white;
}

.btn-confirm:hover[b-lhkub17f7i] {
    background: #45B7D1;
}

.btn-cancel[b-lhkub17f7i] {
    background: #e0e0e0;
    color: #333;
}

.btn-cancel:hover[b-lhkub17f7i] {
    background: #d0d0d0;
}

.success-message[b-lhkub17f7i],
.error-message[b-lhkub17f7i] {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.success-message[b-lhkub17f7i] {
    background: #f0fff4;
    border: 1px solid #2ED573;
    color: #155724;
}

.success-message a[b-lhkub17f7i] {
    color: #4ECDC4;
    margin-left: 0.5rem;
}

.error-message[b-lhkub17f7i] {
    background: #fff0f0;
    border: 1px solid #FF4757;
    color: #721c24;
}


/* /Components/Shared/ActionItemsList.razor.rz.scp.css */
/* WO-154/160/164/168: Action Items List */

.action-items-list-container[b-z2cbypir82] {
    padding: 1rem 0;
}

/* Stats bar */
.stats-bar[b-z2cbypir82] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.stat[b-z2cbypir82] {
    text-align: center;
    min-width: 60px;
}

.stat-value[b-z2cbypir82] {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #212529;
}

.stat-label[b-z2cbypir82] {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-pending[b-z2cbypir82] { color: #856404; }
.stat-in-progress[b-z2cbypir82] { color: #004085; }
.stat-completed[b-z2cbypir82] { color: #155724; }
.stat-overdue .stat-value[b-z2cbypir82] { color: #dc3545; }

/* Filters bar */
.filters-bar[b-z2cbypir82] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.status-filters[b-z2cbypir82] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-pill[b-z2cbypir82] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #495057;
    cursor: pointer;
    min-height: 44px;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.filter-pill:hover[b-z2cbypir82] {
    border-color: #007bff;
    color: #007bff;
}

.filter-pill.active[b-z2cbypir82] {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

.filter-pill:focus-visible[b-z2cbypir82] {
    outline: 3px solid #007bff;
    outline-offset: 2px;
}

.filter-count[b-z2cbypir82] {
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.1);
    padding: 0.1rem 0.35rem;
    border-radius: 8px;
}

.filter-pill.active .filter-count[b-z2cbypir82] {
    background: rgba(255, 255, 255, 0.3);
}

.sort-select[b-z2cbypir82] {
    padding: 0.4rem 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #495057;
    background: white;
    min-height: 44px;
    cursor: pointer;
}

.sort-select:focus[b-z2cbypir82] {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* Items list */
.items-list[b-z2cbypir82] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sr-only[b-z2cbypir82] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.action-item-row[b-z2cbypir82] {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: border-color 0.15s ease;
}

.action-item-row:hover[b-z2cbypir82] {
    border-color: #adb5bd;
}

.action-item-row.item-completed[b-z2cbypir82] {
    opacity: 0.7;
}

/* Item main */
.item-main[b-z2cbypir82] {
    min-width: 0;
}

.item-badges[b-z2cbypir82] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.priority-badge[b-z2cbypir82] {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    text-transform: uppercase;
}

.priority-high[b-z2cbypir82] {
    background: #f8d7da;
    color: #721c24;
}

.priority-medium[b-z2cbypir82] {
    background: #fff3cd;
    color: #856404;
}

.priority-low[b-z2cbypir82] {
    background: #e9ecef;
    color: #6c757d;
}

.overdue-badge[b-z2cbypir82] {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    background: #dc3545;
    color: white;
}

.item-description[b-z2cbypir82] {
    margin: 0 0 0.25rem;
    font-size: 0.9rem;
    color: #212529;
    line-height: 1.4;
}

.item-session[b-z2cbypir82] {
    font-size: 0.8rem;
    color: #007bff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.item-session:hover[b-z2cbypir82] {
    text-decoration: underline;
}

/* Item meta */
.item-meta[b-z2cbypir82] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: #6c757d;
    white-space: nowrap;
}

.item-meta span[b-z2cbypir82] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.item-meta .overdue[b-z2cbypir82] {
    color: #dc3545;
    font-weight: 600;
}

/* Status dropdown */
.item-status-control[b-z2cbypir82] {
    min-width: 130px;
}

.status-dropdown[b-z2cbypir82] {
    width: 100%;
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    min-height: 44px;
    border: 2px solid;
}

.select-pending[b-z2cbypir82] {
    border-color: #ffc107;
    background: #fff3cd;
    color: #856404;
}

.select-in-progress[b-z2cbypir82] {
    border-color: #17a2b8;
    background: #cce5ff;
    color: #004085;
}

.select-completed[b-z2cbypir82] {
    border-color: #28a745;
    background: #d4edda;
    color: #155724;
}

.status-dropdown:focus[b-z2cbypir82] {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* States */
.loading-skeleton[b-z2cbypir82] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-stats[b-z2cbypir82] {
    height: 80px;
    background: #e9ecef;
    border-radius: 12px;
    animation: pulse-b-z2cbypir82 1.5s ease-in-out infinite;
}

.skeleton-filters[b-z2cbypir82] {
    height: 44px;
    background: #e9ecef;
    border-radius: 8px;
    animation: pulse-b-z2cbypir82 1.5s ease-in-out infinite;
}

.skeleton-items[b-z2cbypir82] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skeleton-item[b-z2cbypir82] {
    height: 70px;
    background: #e9ecef;
    border-radius: 8px;
    animation: pulse-b-z2cbypir82 1.5s ease-in-out infinite;
}

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

.empty-state[b-z2cbypir82], .error-state[b-z2cbypir82] {
    text-align: center;
    padding: 3rem 2rem;
    color: #6c757d;
}

.empty-state i[b-z2cbypir82], .error-state i[b-z2cbypir82] {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.error-state i[b-z2cbypir82] { color: #dc3545; }

.empty-state h3[b-z2cbypir82] {
    color: #212529;
    margin-bottom: 0.5rem;
}

.btn-retry[b-z2cbypir82], .btn-clear-filter[b-z2cbypir82] {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
}

.btn-retry:hover[b-z2cbypir82], .btn-clear-filter:hover[b-z2cbypir82] {
    background: #0056b3;
}

.no-results[b-z2cbypir82] {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
}

/* Responsive — WO-168 */
@media (max-width: 768px) {
    .stats-bar[b-z2cbypir82] {
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .stat-value[b-z2cbypir82] {
        font-size: 1.2rem;
    }

    .action-item-row[b-z2cbypir82] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .item-meta[b-z2cbypir82] {
        flex-direction: row;
        gap: 1rem;
    }

    .item-status-control[b-z2cbypir82] {
        min-width: unset;
    }

    .status-dropdown[b-z2cbypir82] {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .loading-skeleton *[b-z2cbypir82] {
        animation: none !important;
    }
}
/* /Components/Shared/ActionItemsSidebar.razor.rz.scp.css */
/* WO-321: Action Items Sidebar */

.action-items-sidebar[b-k7l5qwrpe8] {
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    padding: 1.25rem;
}

/* Header */
.sidebar-header[b-k7l5qwrpe8] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.sidebar-header h3[b-k7l5qwrpe8] {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #212529;
}

.total-count[b-k7l5qwrpe8] {
    background: #e9ecef;
    color: #495057;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
}

/* Stats row */
.stats-row[b-k7l5qwrpe8] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.stat-chip[b-k7l5qwrpe8] {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

.priority-stat-high[b-k7l5qwrpe8] {
    background: #f8d7da;
    color: #721c24;
}

.priority-stat-medium[b-k7l5qwrpe8] {
    background: #fff3cd;
    color: #856404;
}

.priority-stat-low[b-k7l5qwrpe8] {
    background: #e9ecef;
    color: #6c757d;
}

/* Items list */
.items-list[b-k7l5qwrpe8] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Action card */
.action-card[b-k7l5qwrpe8] {
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    border-left: 4px solid #6c9bd2; /* default blue */
    transition: box-shadow 200ms ease;
}

.action-card:hover[b-k7l5qwrpe8] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Priority left borders */
.action-card.border-high[b-k7l5qwrpe8] {
    border-left-color: #dc3545;
}

.action-card.border-medium[b-k7l5qwrpe8] {
    border-left-color: #ffc107;
}

.action-card.border-low[b-k7l5qwrpe8] {
    border-left-color: #6c9bd2;
}

/* Unreviewed tint */
.action-card.unreviewed[b-k7l5qwrpe8] {
    background: #fffbf0;
}

/* Description */
.card-description[b-k7l5qwrpe8] {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #212529;
    margin: 0 0 0.5rem;
}

/* Badges row */
.card-badges[b-k7l5qwrpe8] {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.priority-badge[b-k7l5qwrpe8] {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.badge-priority-high[b-k7l5qwrpe8] {
    background: #f8d7da;
    color: #721c24;
}

.badge-priority-medium[b-k7l5qwrpe8] {
    background: #fff3cd;
    color: #856404;
}

.owned-badge[b-k7l5qwrpe8] {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.1rem 0.4rem;
    border-radius: 8px;
    background: #d1ecf1;
    color: #0c5460;
}

/* Meta row */
.card-meta[b-k7l5qwrpe8] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.meta-item[b-k7l5qwrpe8] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.meta-item.overdue[b-k7l5qwrpe8] {
    color: #dc3545;
    font-weight: 600;
}

/* Status area */
.card-status[b-k7l5qwrpe8] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Status badge (static, for non-owned items) */
.status-badge[b-k7l5qwrpe8] {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.badge-status-pending[b-k7l5qwrpe8] {
    background: #e9ecef;
    color: #6c757d;
}

.badge-status-inprogress[b-k7l5qwrpe8] {
    background: #cce5ff;
    color: #004085;
}

.badge-status-complete[b-k7l5qwrpe8] {
    background: #d4edda;
    color: #155724;
}

.badge-status-blocked[b-k7l5qwrpe8] {
    background: #f8d7da;
    color: #721c24;
}

/* Status dropdown (owned items) */
.status-dropdown[b-k7l5qwrpe8] {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.4rem;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    cursor: pointer;
    transition: border-color 200ms ease;
    appearance: auto;
    background: #f8f9fa;
}

.status-dropdown:hover:not(:disabled)[b-k7l5qwrpe8] {
    border-color: #007bff;
}

.status-dropdown:disabled[b-k7l5qwrpe8] {
    opacity: 0.6;
    cursor: wait;
}

.dropdown-pending[b-k7l5qwrpe8] {
    color: #6c757d;
}

.dropdown-inprogress[b-k7l5qwrpe8] {
    color: #004085;
    border-color: #b8daff;
    background: #e8f4ff;
}

.dropdown-complete[b-k7l5qwrpe8] {
    color: #155724;
    border-color: #c3e6cb;
    background: #eaf7ed;
}

.dropdown-blocked[b-k7l5qwrpe8] {
    color: #721c24;
    border-color: #f5c6cb;
    background: #fdf0f1;
}

/* Loading spinner */
.status-loading[b-k7l5qwrpe8] {
    display: inline-flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.85rem;
}

.spin[b-k7l5qwrpe8] {
    animation: spin-b-k7l5qwrpe8 0.8s linear infinite;
}

@keyframes spin-b-k7l5qwrpe8 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
/* /Components/Shared/ActiveFilterChips.razor.rz.scp.css */
/* WO-149: Active filter chips */

.active-chips[b-5pu4i3yy38] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1rem;
}

.filter-chip[b-5pu4i3yy38] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-radius: 16px;
    font-size: 0.8rem;
    color: #1565c0;
}

.chip-type[b-5pu4i3yy38] {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    color: #1976d2;
}

.chip-label[b-5pu4i3yy38] {
    font-weight: 500;
}

.chip-remove[b-5pu4i3yy38] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    padding: 0;
    margin-left: 0.25rem;
    cursor: pointer;
    color: #1565c0;
    font-size: 0.9rem;
    line-height: 1;
    border-radius: 50%;
    width: 18px;
    height: 18px;
}

.chip-remove:hover[b-5pu4i3yy38] {
    background: #bbdefb;
}

.chip-remove:focus-visible[b-5pu4i3yy38] {
    outline: 2px solid #1565c0;
    outline-offset: 1px;
}

.clear-all-chips[b-5pu4i3yy38] {
    border: none;
    background: none;
    color: #d32f2f;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0.25rem 0.5rem;
}

.clear-all-chips:hover[b-5pu4i3yy38] {
    color: #b71c1c;
}

.clear-all-chips:focus-visible[b-5pu4i3yy38] {
    outline: 2px solid #d32f2f;
    outline-offset: 2px;
    border-radius: 4px;
}
/* /Components/Shared/AdvancedFilterPanel.razor.rz.scp.css */
/* WO-144: Advanced Filter Panel */

.filter-panel[b-ae556ukuxk] {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.filter-toggle[b-ae556ukuxk] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    transition: background-color 0.15s;
}

.filter-toggle:hover[b-ae556ukuxk] {
    background: #f8f9fa;
}

.filter-badge[b-ae556ukuxk] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 11px;
    background: #EE3342;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

.toggle-icon[b-ae556ukuxk] {
    margin-left: auto;
    font-size: 0.85rem;
    color: #95a5a6;
}

/* Filter Content */
.filter-content[b-ae556ukuxk] {
    border-top: 1px solid #e0e0e0;
    padding: 0.5rem 0;
}

/* Filter Sections */
.filter-section[b-ae556ukuxk] {
    border-bottom: 1px solid #f0f0f0;
}

.filter-section:last-of-type[b-ae556ukuxk] {
    border-bottom: none;
}

.section-header[b-ae556ukuxk] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: none;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: #34495e;
    cursor: pointer;
    transition: background-color 0.15s;
}

.section-header:hover[b-ae556ukuxk] {
    background: #f8f9fa;
}

.section-header i[b-ae556ukuxk] {
    margin-left: auto;
    font-size: 0.75rem;
    color: #bdc3c7;
}

.section-count[b-ae556ukuxk] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 10px;
    background: #3498db;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
}

.section-body[b-ae556ukuxk] {
    padding: 0.5rem 1.25rem 1rem;
    max-height: 250px;
    overflow-y: auto;
}

/* Filter Options (Checkboxes) */
.filter-option[b-ae556ukuxk] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
    cursor: pointer;
    font-size: 0.875rem;
    color: #2c3e50;
}

.filter-option:hover[b-ae556ukuxk] {
    color: #3498db;
}

.filter-option input[type="checkbox"][b-ae556ukuxk] {
    width: 16px;
    height: 16px;
    accent-color: #3498db;
    cursor: pointer;
}

.option-label[b-ae556ukuxk] {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.option-count[b-ae556ukuxk] {
    color: #95a5a6;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Tag Search */
.tag-search-input[b-ae556ukuxk] {
    width: 100%;
    padding: 0.4rem 0.6rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    outline: none;
    transition: border-color 0.15s;
}

.tag-search-input:focus[b-ae556ukuxk] {
    border-color: #3498db;
}

.tag-search-clear[b-ae556ukuxk] {
    text-align: right;
    margin-bottom: 0.25rem;
}

/* Date Controls */
.date-presets[b-ae556ukuxk] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.preset-btn[b-ae556ukuxk] {
    padding: 0.3rem 0.7rem;
    border: 1px solid #ddd;
    border-radius: 16px;
    background: #fff;
    font-size: 0.8rem;
    color: #555;
    cursor: pointer;
    transition: all 0.15s;
}

.preset-btn:hover[b-ae556ukuxk] {
    border-color: #3498db;
    color: #3498db;
}

.preset-btn.active[b-ae556ukuxk] {
    background: #3498db;
    border-color: #3498db;
    color: #fff;
}

.date-inputs[b-ae556ukuxk] {
    display: flex;
    gap: 0.75rem;
}

.date-field[b-ae556ukuxk] {
    flex: 1;
}

.date-field label[b-ae556ukuxk] {
    display: block;
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-bottom: 0.25rem;
}

.date-field input[type="date"][b-ae556ukuxk] {
    width: 100%;
    padding: 0.4rem 0.5rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.85rem;
    outline: none;
}

.date-field input[type="date"]:focus[b-ae556ukuxk] {
    border-color: #3498db;
}

/* Sort Select */
.sort-select[b-ae556ukuxk] {
    width: 100%;
    padding: 0.5rem 0.6rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.875rem;
    outline: none;
    background: #fff;
}

.sort-select:focus[b-ae556ukuxk] {
    border-color: #3498db;
}

/* Result Preview */
.result-preview[b-ae556ukuxk] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: #f0f7ff;
    color: #2980b9;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Actions */
.filter-actions[b-ae556ukuxk] {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-top: 1px solid #e0e0e0;
    background: #fafafa;
}

/* Loading */
.loading-text[b-ae556ukuxk] {
    color: #95a5a6;
    font-size: 0.85rem;
    font-style: italic;
    margin: 0;
}

/* Mobile: full width, collapsible */
@media (max-width: 767px) {
    .filter-panel[b-ae556ukuxk] {
        border-radius: 8px;
    }

    .date-inputs[b-ae556ukuxk] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .date-presets[b-ae556ukuxk] {
        justify-content: center;
    }

    .section-body[b-ae556ukuxk] {
        max-height: 200px;
    }
}
/* /Components/Shared/AlbumCoverCard.razor.rz.scp.css */
/* WO-123: Album Cover Card - Pop Art Theme */

.album-cover-card[b-9ffmtfp06k] {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.album-cover-card:hover[b-9ffmtfp06k],
.album-cover-card:focus-within[b-9ffmtfp06k] {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* WO-273: Visible focus ring for keyboard navigation */
.album-cover-card:focus-visible[b-9ffmtfp06k] {
    outline: 3px solid #007bff;
    outline-offset: 2px;
    border-radius: 12px;
}

.album-cover-card:focus:not(:focus-visible)[b-9ffmtfp06k] {
    outline: none;
}

/* Image Container */
.card-image[b-9ffmtfp06k] {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 aspect ratio */
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.album-cover[b-9ffmtfp06k] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* WO-273: Show image zoom on both hover and keyboard focus */
.album-cover-card:hover .album-cover[b-9ffmtfp06k],
.album-cover-card:focus-within .album-cover[b-9ffmtfp06k] {
    transform: scale(1.05);
}

/* Placeholder for missing covers */
.placeholder-cover[b-9ffmtfp06k] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.placeholder-cover i[b-9ffmtfp06k] {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Hover Overlay */
.hover-overlay[b-9ffmtfp06k] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    animation: fadeIn-b-9ffmtfp06k 0.3s ease forwards;
}

@keyframes fadeIn-b-9ffmtfp06k {
    to { opacity: 1; }
}

.overlay-content[b-9ffmtfp06k] {
    text-align: center;
    color: white;
}

.overlay-content h4[b-9ffmtfp06k] {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
}

.overlay-content .quote[b-9ffmtfp06k] {
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #f39c12;
    line-height: 1.4;
}

.preview-stats[b-9ffmtfp06k] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.preview-stats span[b-9ffmtfp06k] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Card Info */
.card-info[b-9ffmtfp06k] {
    padding: 1rem;
}

.session-title[b-9ffmtfp06k] {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* WO-273: Improved contrast from #7f8c8d to #5a6268 for WCAG AA compliance */
.session-meta[b-9ffmtfp06k] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: #5a6268;
    margin-bottom: 0.75rem;
}

.session-meta span[b-9ffmtfp06k] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Tags */
.tags[b-9ffmtfp06k] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-badge[b-9ffmtfp06k] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #ecf0f1;
    color: #2c3e50;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tag-badge.more[b-9ffmtfp06k] {
    background: #3498db;
    color: white;
}

/* WO-156: Action items badge */
.action-items-badge[b-9ffmtfp06k] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #e67e22;
    font-weight: 600;
}

/* WO-156: Summary preview snippet */
/* WO-273: Improved contrast for WCAG AA compliance */
.summary-preview[b-9ffmtfp06k] {
    font-size: 0.8rem;
    color: #545b62;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .session-title[b-9ffmtfp06k] {
        font-size: 1rem;
    }

    .overlay-content h4[b-9ffmtfp06k] {
        font-size: 1rem;
    }

    .overlay-content .quote[b-9ffmtfp06k] {
        font-size: 0.85rem;
    }
}



/* /Components/Shared/DiscoveryTabs.razor.rz.scp.css */
/* WO-128: Discovery Tab Navigation — mirrors CurationWorkspace .workspace-tabs pattern */

.discovery-tabs[b-qj9un287ug] {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 2rem;
    padding-bottom: 0;
}

.tab-btn[b-qj9un287ug] {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: #6c757d;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s ease, border-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover[b-qj9un287ug] {
    color: #007bff;
    background-color: #f8f9fa;
}

.tab-btn.active[b-qj9un287ug] {
    color: #007bff;
    border-bottom-color: #007bff;
    font-weight: 600;
}

.tab-btn:focus-visible[b-qj9un287ug] {
    outline: 3px solid #007bff;
    outline-offset: -2px;
    border-radius: 4px 4px 0 0;
}

@media (max-width: 767px) {
    .tab-btn[b-qj9un287ug] {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .tab-btn i[b-qj9un287ug] {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tab-btn[b-qj9un287ug] {
        transition: none;
    }
}
/* /Components/Shared/HighlightText.razor.rz.scp.css */
/* WO-156: Search term highlighting */

[b-3dbutv2oy3] mark {
    background-color: #fff176;
    color: inherit;
    padding: 0 2px;
    border-radius: 2px;
}
/* /Components/Shared/KeyQuotesCard.razor.rz.scp.css */
/* WO-178: Key Quotes Card */

.key-quotes-card[b-e2qh20rlf3] {
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    padding: 1.25rem;
}

.key-quotes-card h3[b-e2qh20rlf3] {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #212529;
}

.quote-item[b-e2qh20rlf3] {
    border-left: 3px solid #f39c12;
    padding: 0.75rem 1rem;
    margin: 0 0 0.75rem;
    background: #fff8e1;
    border-radius: 0 8px 8px 0;
}

.quote-item p[b-e2qh20rlf3] {
    margin: 0;
    font-style: italic;
    line-height: 1.5;
    color: #212529;
    font-size: 0.9rem;
}

.quote-item cite[b-e2qh20rlf3] {
    display: inline-block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #f39c12;
    font-style: normal;
    font-weight: 600;
}

.more-count[b-e2qh20rlf3] {
    text-align: center;
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
}

/* WO-244: Highlight context display */

.context-label[b-e2qh20rlf3] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6c757d;
    display: block;
    margin-bottom: 0.25rem;
}

.context-before[b-e2qh20rlf3],
.context-after[b-e2qh20rlf3] {
    font-size: 0.85rem;
    color: #8a8a8a;
    font-style: italic;
    margin: 0.25rem 0;
}
/* /Components/Shared/MediaPlayer.razor.rz.scp.css */
/* WO-171/172: Media Player */

.media-player[b-wgs85dxs2b] {
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    padding: 1.5rem;
}

.media-player h2[b-wgs85dxs2b] {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #212529;
}

.media-list[b-wgs85dxs2b] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.media-item[b-wgs85dxs2b] {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.media-label[b-wgs85dxs2b] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    font-size: 0.9rem;
}

.media-label i[b-wgs85dxs2b] {
    color: #007bff;
}

.media-filename[b-wgs85dxs2b] {
    flex: 1;
    font-weight: 500;
    color: #212529;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.media-type-badge[b-wgs85dxs2b] {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    background: #e9ecef;
    color: #6c757d;
}

/* Embeds */
.media-embed[b-wgs85dxs2b] {
    position: relative;
    width: 100%;
    background: #000;
}

.video-embed[b-wgs85dxs2b] {
    padding-bottom: 56.25%; /* 16:9 */
}

.audio-embed[b-wgs85dxs2b] {
    padding-bottom: 80px;
}

.media-embed iframe[b-wgs85dxs2b] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Fallback */
.media-fallback[b-wgs85dxs2b] {
    padding: 1.5rem;
    text-align: center;
}

.media-fallback a[b-wgs85dxs2b] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.media-fallback a:hover[b-wgs85dxs2b] {
    text-decoration: underline;
}

.no-preview[b-wgs85dxs2b] {
    color: #adb5bd;
    font-size: 0.9rem;
}
/* /Components/Shared/PersonalizationDashboard.razor.rz.scp.css */
/* WO-135: Personalization and Recommendations Dashboard */

.personalization-dashboard[b-qnxqyytrae] {
    padding: 1rem 0;
}

/* Section layout */
.dashboard-section[b-qnxqyytrae] {
    margin-bottom: 2rem;
}

.section-title[b-qnxqyytrae] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.section-title i[b-qnxqyytrae] {
    color: #007bff;
}

.item-count[b-qnxqyytrae] {
    font-size: 0.75rem;
    font-weight: 700;
    background: #e9ecef;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    color: #6c757d;
}

/* Recommendations grid */
.recommendations-grid[b-qnxqyytrae] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.recommendation-card[b-qnxqyytrae] {
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    padding: 0;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.recommendation-card:hover[b-qnxqyytrae] {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.recommendation-card:focus-visible[b-qnxqyytrae] {
    outline: 3px solid #007bff;
    outline-offset: 2px;
}

.rec-cover[b-qnxqyytrae] {
    aspect-ratio: 1;
    overflow: hidden;
    background: #1a1a2e;
}

.rec-cover img[b-qnxqyytrae] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rec-cover-placeholder[b-qnxqyytrae] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    color: rgba(255, 255, 255, 0.3);
    font-size: 2rem;
}

.rec-info[b-qnxqyytrae] {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.rec-title[b-qnxqyytrae] {
    font-weight: 600;
    font-size: 0.85rem;
    color: #212529;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rec-reason[b-qnxqyytrae] {
    font-size: 0.75rem;
    color: #6c757d;
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
}

.rec-reason i[b-qnxqyytrae] {
    color: #f39c12;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.rec-criteria[b-qnxqyytrae] {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.criterion-badge[b-qnxqyytrae] {
    font-size: 0.65rem;
    padding: 0.1rem 0.4rem;
    background: #e3f2fd;
    color: #1565c0;
    border-radius: 8px;
    font-weight: 500;
}

/* Action summary bar */
.action-summary-bar[b-qnxqyytrae] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.summary-stat[b-qnxqyytrae] {
    text-align: center;
    min-width: 50px;
}

.summary-value[b-qnxqyytrae] {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
}

.summary-label[b-qnxqyytrae] {
    font-size: 0.7rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-overdue[b-qnxqyytrae] { color: #dc3545; }
.summary-pending[b-qnxqyytrae] { color: #856404; }
.summary-in-progress[b-qnxqyytrae] { color: #004085; }
.summary-completed[b-qnxqyytrae] { color: #155724; }

/* Action items */
.action-items-list[b-qnxqyytrae] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.action-item[b-qnxqyytrae] {
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: border-color 0.15s ease;
}

.action-item:hover[b-qnxqyytrae] {
    border-color: #adb5bd;
}

.action-item.item-overdue[b-qnxqyytrae] {
    border-left: 3px solid #dc3545;
}

.action-item.item-completed[b-qnxqyytrae] {
    opacity: 0.7;
}

.item-badges[b-qnxqyytrae] {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
}

.priority-badge[b-qnxqyytrae] {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.1rem 0.4rem;
    border-radius: 8px;
    text-transform: uppercase;
}

.priority-critical[b-qnxqyytrae] { background: #f8d7da; color: #721c24; }
.priority-high[b-qnxqyytrae] { background: #f8d7da; color: #721c24; }
.priority-medium[b-qnxqyytrae] { background: #fff3cd; color: #856404; }
.priority-low[b-qnxqyytrae] { background: #e9ecef; color: #6c757d; }

.status-badge[b-qnxqyytrae] {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.1rem 0.4rem;
    border-radius: 8px;
}

.status-pending[b-qnxqyytrae] { background: #fff3cd; color: #856404; }
.status-inprogress[b-qnxqyytrae] { background: #cce5ff; color: #004085; }
.status-completed[b-qnxqyytrae] { background: #d4edda; color: #155724; }
.status-onhold[b-qnxqyytrae] { background: #e9ecef; color: #6c757d; }
.status-cancelled[b-qnxqyytrae] { background: #e9ecef; color: #6c757d; }

.overdue-badge[b-qnxqyytrae] {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.1rem 0.4rem;
    border-radius: 8px;
    background: #dc3545;
    color: white;
}

.item-description[b-qnxqyytrae] {
    margin: 0 0 0.4rem;
    font-size: 0.85rem;
    color: #212529;
    line-height: 1.4;
}

.item-footer[b-qnxqyytrae] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.item-session-link[b-qnxqyytrae] {
    font-size: 0.78rem;
    color: #007bff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.item-session-link:hover[b-qnxqyytrae] {
    text-decoration: underline;
}

.item-due[b-qnxqyytrae] {
    font-size: 0.75rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.item-due.overdue[b-qnxqyytrae] {
    color: #dc3545;
    font-weight: 600;
}

/* Generated at footer */
.generated-at[b-qnxqyytrae] {
    text-align: right;
    font-size: 0.72rem;
    color: #adb5bd;
    margin-top: 1rem;
}

/* Empty / Error states */
.empty-state[b-qnxqyytrae], .error-state[b-qnxqyytrae] {
    text-align: center;
    padding: 3rem 2rem;
    color: #6c757d;
}

.empty-state i[b-qnxqyytrae], .error-state i[b-qnxqyytrae] {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.error-state i[b-qnxqyytrae] { color: #dc3545; }

.empty-state h3[b-qnxqyytrae] {
    color: #212529;
    margin-bottom: 0.5rem;
}

.btn-retry[b-qnxqyytrae], .btn-browse[b-qnxqyytrae] {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    min-height: 44px;
}

.btn-retry:hover[b-qnxqyytrae], .btn-browse:hover[b-qnxqyytrae] {
    background: #0056b3;
}

/* Loading skeleton */
.loading-skeleton[b-qnxqyytrae] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skeleton-section[b-qnxqyytrae] {
    height: 30px;
    width: 200px;
    background: #e9ecef;
    border-radius: 8px;
    animation: pulse-b-qnxqyytrae 1.5s ease-in-out infinite;
}

.skeleton-grid[b-qnxqyytrae] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.skeleton-card[b-qnxqyytrae] {
    aspect-ratio: 0.8;
    background: #e9ecef;
    border-radius: 12px;
    animation: pulse-b-qnxqyytrae 1.5s ease-in-out infinite;
}

.skeleton-list[b-qnxqyytrae] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skeleton-item[b-qnxqyytrae] {
    height: 70px;
    background: #e9ecef;
    border-radius: 8px;
    animation: pulse-b-qnxqyytrae 1.5s ease-in-out infinite;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .recommendations-grid[b-qnxqyytrae] {
        grid-template-columns: repeat(3, 1fr);
    }

    .skeleton-grid[b-qnxqyytrae] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .recommendations-grid[b-qnxqyytrae] {
        grid-template-columns: repeat(2, 1fr);
    }

    .skeleton-grid[b-qnxqyytrae] {
        grid-template-columns: repeat(2, 1fr);
    }

    .action-summary-bar[b-qnxqyytrae] {
        gap: 0.5rem;
        padding: 0.5rem 0.75rem;
    }

    .summary-value[b-qnxqyytrae] {
        font-size: 1.1rem;
    }

    .item-footer[b-qnxqyytrae] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .recommendations-grid[b-qnxqyytrae] {
        grid-template-columns: 1fr;
    }

    .skeleton-grid[b-qnxqyytrae] {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .loading-skeleton *[b-qnxqyytrae] {
        animation: none !important;
    }
}
/* /Components/Shared/RelatedSessionsGrid.razor.rz.scp.css */
/* WO-175: Related Sessions Grid */

.related-sessions[b-gnjzs2zsun] {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.related-sessions h2[b-gnjzs2zsun] {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #212529;
}

.related-grid[b-gnjzs2zsun] {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.related-card[b-gnjzs2zsun] {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card:hover[b-gnjzs2zsun] {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.related-card:focus-visible[b-gnjzs2zsun] {
    outline: 3px solid #007bff;
    outline-offset: 2px;
}

.related-image[b-gnjzs2zsun] {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.related-image img[b-gnjzs2zsun] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-placeholder[b-gnjzs2zsun] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-placeholder i[b-gnjzs2zsun] {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.related-info[b-gnjzs2zsun] {
    padding: 0.75rem;
}

.related-title[b-gnjzs2zsun] {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: #212529;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.shared-tags[b-gnjzs2zsun] {
    font-size: 0.75rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Responsive */
@media (max-width: 992px) {
    .related-grid[b-gnjzs2zsun] {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .related-grid[b-gnjzs2zsun] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    .related-card[b-gnjzs2zsun] {
        transition: none;
    }
}
/* /Components/Shared/SavedFilters.razor.rz.scp.css */
/* WO-149: Saved filter presets */

.saved-filters[b-r03z557usk] {
    position: relative;
}

.saved-filters-toggle[b-r03z557usk] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #dee2e6;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #495057;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.saved-filters-toggle:hover[b-r03z557usk] {
    border-color: #007bff;
    color: #007bff;
}

.saved-filters-toggle:focus-visible[b-r03z557usk] {
    outline: 3px solid #007bff;
    outline-offset: 2px;
}

.preset-count[b-r03z557usk] {
    background: #007bff;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 10px;
    padding: 0.1rem 0.4rem;
    min-width: 18px;
    text-align: center;
}

.saved-filters-panel[b-r03z557usk] {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    margin-top: 0.5rem;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0.75rem;
    min-width: 280px;
}

.save-form[b-r03z557usk] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.preset-name-input[b-r03z557usk] {
    flex: 1;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 0.375rem 0.5rem;
    font-size: 0.85rem;
}

.preset-name-input:focus[b-r03z557usk] {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.btn-save[b-r03z557usk], .btn-cancel[b-r03z557usk] {
    border: none;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
}

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

.btn-save:disabled[b-r03z557usk] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-cancel[b-r03z557usk] {
    background: #f8f9fa;
    color: #495057;
}

.btn-save-new[b-r03z557usk] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    border: 1px dashed #dee2e6;
    background: none;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #007bff;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.btn-save-new:hover[b-r03z557usk] {
    background: #f8f9fa;
}

.btn-save-new:disabled[b-r03z557usk] {
    color: #adb5bd;
    cursor: not-allowed;
}

.preset-list[b-r03z557usk] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.preset-item[b-r03z557usk] {
    display: flex;
    align-items: center;
    border-radius: 4px;
}

.preset-item:hover[b-r03z557usk] {
    background: #f8f9fa;
}

.preset-load[b-r03z557usk] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    background: none;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 0.85rem;
    text-align: left;
}

.preset-name[b-r03z557usk] {
    color: #212529;
    font-weight: 500;
}

.preset-date[b-r03z557usk] {
    color: #adb5bd;
    font-size: 0.75rem;
}

.preset-delete[b-r03z557usk] {
    border: none;
    background: none;
    color: #dc3545;
    padding: 0.375rem;
    cursor: pointer;
    border-radius: 4px;
    opacity: 0;
}

.preset-item:hover .preset-delete[b-r03z557usk] {
    opacity: 1;
}

.preset-delete:focus-visible[b-r03z557usk] {
    opacity: 1;
    outline: 2px solid #dc3545;
    outline-offset: 1px;
}

.no-presets[b-r03z557usk] {
    text-align: center;
    color: #adb5bd;
    font-size: 0.85rem;
    padding: 1rem 0;
    margin: 0;
}
/* /Components/Shared/SearchBar.razor.rz.scp.css */
/* WO-140: Core Search Interface */

.search-bar-container[b-iagk16gr4m] {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.search-input-wrapper[b-iagk16gr4m] {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 0 1rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.search-input-wrapper:focus-within[b-iagk16gr4m] {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
}

.search-icon[b-iagk16gr4m] {
    color: #95a5a6;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.search-input[b-iagk16gr4m] {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.75rem 0.75rem;
    font-size: 1rem;
    color: #2c3e50;
    background: transparent;
}

.search-input[b-iagk16gr4m]::placeholder {
    color: #bdc3c7;
}

.clear-btn[b-iagk16gr4m] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: #ecf0f1;
    color: #7f8c8d;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.15s;
}

.clear-btn:hover[b-iagk16gr4m] {
    background: #ddd;
    color: #2c3e50;
}

/* Suggestions Dropdown */
.suggestions-dropdown[b-iagk16gr4m] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 100;
    overflow: hidden;
}

.suggestion-item[b-iagk16gr4m] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.65rem 1rem;
    border: none;
    background: none;
    font-size: 0.9rem;
    color: #2c3e50;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.1s;
}

.suggestion-item:hover[b-iagk16gr4m],
.suggestion-item.selected[b-iagk16gr4m] {
    background: #f0f7ff;
}

.suggestion-item i[b-iagk16gr4m] {
    color: #95a5a6;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.suggestion-text[b-iagk16gr4m] {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.suggestion-type[b-iagk16gr4m] {
    font-size: 0.75rem;
    color: #95a5a6;
    background: #f0f0f0;
    padding: 0.15rem 0.5rem;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Mobile */
@media (max-width: 767px) {
    .search-bar-container[b-iagk16gr4m] {
        max-width: 100%;
    }

    .search-input[b-iagk16gr4m] {
        font-size: 0.95rem;
        padding: 0.65rem 0.5rem;
    }
}
/* /Components/Shared/SessionHero.razor.rz.scp.css */
/* WO-165/166: Pop Art Hero Section */

.session-hero[b-89caa6qe24] {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-content[b-89caa6qe24] {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    padding: 2rem;
    align-items: center;
}

/* Album cover */
.hero-image[b-89caa6qe24] {
    margin: 0;
}

.hero-album-cover[b-89caa6qe24] {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-placeholder[b-89caa6qe24] {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
}

.hero-placeholder i[b-89caa6qe24] {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Details */
.hero-details[b-89caa6qe24] {
    color: white;
}

.hero-title[b-89caa6qe24] {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 1rem;
    line-height: 1.2;
    color: #fff;
}

.hero-quote[b-89caa6qe24] {
    margin: 0 0 1.5rem;
    padding: 0;
    border: none;
}

.hero-quote p[b-89caa6qe24] {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.5;
    color: #f39c12;
    font-weight: 600;
    margin: 0;
}

.hero-meta[b-89caa6qe24] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
}

.meta-item[b-89caa6qe24] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.8);
}

.department-badge[b-89caa6qe24] {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content[b-89caa6qe24] {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem;
    }

    .hero-image[b-89caa6qe24] {
        max-width: 200px;
        margin: 0 auto;
    }

    .hero-title[b-89caa6qe24] {
        font-size: 1.5rem;
    }

    .hero-quote p[b-89caa6qe24] {
        font-size: 1rem;
    }

    .hero-meta[b-89caa6qe24] {
        justify-content: center;
    }
}
/* /Components/Shared/SessionMetadata.razor.rz.scp.css */
.session-metadata[b-1e4j19kf53] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.75rem 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.metadata-item[b-1e4j19kf53] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.metadata-item i[b-1e4j19kf53] {
    font-size: 1rem;
}
/* /Components/Shared/SourceDocumentsCard.razor.rz.scp.css */
/* WO-178: Source Documents Card */

.source-docs-card[b-dzr9bbf8k3] {
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    padding: 1.25rem;
}

.source-docs-card h3[b-dzr9bbf8k3] {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #212529;
}

.doc-list[b-dzr9bbf8k3] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.doc-item[b-dzr9bbf8k3] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
}

.doc-item:hover[b-dzr9bbf8k3] {
    background: #f8f9fa;
}

.doc-item > i[b-dzr9bbf8k3] {
    color: #6c757d;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.doc-link[b-dzr9bbf8k3] {
    flex: 1;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.doc-link:hover[b-dzr9bbf8k3] {
    text-decoration: underline;
}

.link-icon[b-dzr9bbf8k3] {
    font-size: 0.7rem;
    flex-shrink: 0;
}

.doc-name[b-dzr9bbf8k3] {
    flex: 1;
    color: #212529;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.doc-type[b-dzr9bbf8k3] {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #adb5bd;
    flex-shrink: 0;
}
/* /Components/Shared/StatusBadge.razor.rz.scp.css */
.status-badge[b-a1vdfh5t0n] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}

.status-badge i[b-a1vdfh5t0n] {
    font-size: 0.85rem;
}

.status-submitted[b-a1vdfh5t0n] {
    background-color: #e7f1ff;
    color: #0d6efd;
}

.status-processing[b-a1vdfh5t0n] {
    background-color: #fff9e6;
    color: #cc8a00;
}

.status-curation[b-a1vdfh5t0n] {
    background-color: #f3e8ff;
    color: #7c3aed;
}

.status-published[b-a1vdfh5t0n] {
    background-color: #e6f9ed;
    color: #198754;
}

.status-unpublished[b-a1vdfh5t0n] {
    background-color: #f0f0f0;
    color: #6c757d;
}

.status-failed[b-a1vdfh5t0n] {
    background-color: #fde8e8;
    color: #dc3545;
}

.status-default[b-a1vdfh5t0n] {
    background-color: #f0f0f0;
    color: #6c757d;
}

.status-message[b-a1vdfh5t0n] {
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.25rem;
    font-style: italic;
}
/* /Components/Shared/SubmissionDetails.razor.rz.scp.css */
.submission-details-loading[b-wiomoqyr78] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.submission-details-error[b-wiomoqyr78] {
    padding: 1.5rem;
    text-align: center;
    color: #dc3545;
}

.submission-details-error i[b-wiomoqyr78] {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.submission-details[b-wiomoqyr78] {
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
    background: #fafbfc;
}

.details-header[b-wiomoqyr78] {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.details-header h3[b-wiomoqyr78] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.details-description[b-wiomoqyr78] {
    color: #495057;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.details-meta[b-wiomoqyr78] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #6c757d;
    font-size: 0.85rem;
}

.meta-item[b-wiomoqyr78] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.details-documents[b-wiomoqyr78] {
    margin-bottom: 1rem;
}

.details-documents h4[b-wiomoqyr78] {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.document-list[b-wiomoqyr78] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-item[b-wiomoqyr78] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.document-item:last-child[b-wiomoqyr78] {
    border-bottom: none;
}

.doc-name[b-wiomoqyr78] {
    font-weight: 500;
}

.doc-type[b-wiomoqyr78] {
    color: #6c757d;
    font-size: 0.8rem;
}

.document-item .btn[b-wiomoqyr78] {
    margin-left: auto;
    white-space: nowrap;
}

.details-actions[b-wiomoqyr78] {
    margin-top: 1rem;
}

.pending-notice[b-wiomoqyr78] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #fff9e6;
    border-radius: 0.5rem;
    color: #cc8a00;
    font-size: 0.9rem;
}
/* /Components/Shared/TagsCard.razor.rz.scp.css */
/* WO-178: Tags Card */

.tags-card[b-iiuywoxiri] {
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    padding: 1.25rem;
}

.tags-card h3[b-iiuywoxiri] {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #212529;
}

.tag-category[b-iiuywoxiri] {
    margin-bottom: 0.25rem;
    margin-top: 0.75rem;
}

.tag-category:first-of-type[b-iiuywoxiri] {
    margin-top: 0;
}

.category-label[b-iiuywoxiri] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tag-list[b-iiuywoxiri] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.tag-badge[b-iiuywoxiri] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #ecf0f1;
    color: #2c3e50;
    border: 1px solid transparent;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.tag-badge:hover[b-iiuywoxiri] {
    opacity: 0.8;
}

.tag-badge:focus-visible[b-iiuywoxiri] {
    outline: 3px solid #007bff;
    outline-offset: 2px;
}
/* /Components/Shared/TranscriptViewer.razor.rz.scp.css */
/* WO-169/170: Interactive Transcript Viewer */

.transcript-viewer[b-5vog43pvtm] {
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    padding: 1.5rem;
}

.transcript-header[b-5vog43pvtm] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.transcript-header h2[b-5vog43pvtm] {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #212529;
}

/* Search */
.search-bar[b-5vog43pvtm] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.transcript-search[b-5vog43pvtm] {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.375rem 0.75rem;
    font-size: 0.85rem;
    width: 200px;
}

.transcript-search:focus[b-5vog43pvtm] {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.match-count[b-5vog43pvtm] {
    font-size: 0.8rem;
    color: #6c757d;
    white-space: nowrap;
}

/* Collapsed view */
.summary-section[b-5vog43pvtm] {
    margin-bottom: 1.5rem;
}

.summary-section h3[b-5vog43pvtm] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem;
}

.summary-section p[b-5vog43pvtm] {
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

.highlights-section[b-5vog43pvtm] {
    margin-bottom: 1.5rem;
}

.highlights-section h3[b-5vog43pvtm] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.75rem;
}

.highlight-quote[b-5vog43pvtm] {
    border-left: 3px solid #f39c12;
    padding: 0.75rem 1rem;
    margin: 0 0 0.75rem;
    background: #fff8e1;
    border-radius: 0 8px 8px 0;
}

.highlight-quote p[b-5vog43pvtm] {
    margin: 0;
    color: #212529;
    font-style: italic;
    line-height: 1.5;
}

.highlight-type[b-5vog43pvtm] {
    display: inline-block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #f39c12;
    font-style: normal;
    font-weight: 600;
}

.btn-expand[b-5vog43pvtm], .btn-collapse[b-5vog43pvtm] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #dee2e6;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #007bff;
    cursor: pointer;
    font-weight: 500;
}

.btn-expand:hover[b-5vog43pvtm], .btn-collapse:hover[b-5vog43pvtm] {
    background: #e9ecef;
}

.btn-expand:focus-visible[b-5vog43pvtm], .btn-collapse:focus-visible[b-5vog43pvtm] {
    outline: 3px solid #007bff;
    outline-offset: 2px;
}

.btn-collapse.bottom[b-5vog43pvtm] {
    margin-top: 1rem;
}

/* Expanded view */
.transcript-body[b-5vog43pvtm] {
    max-height: 65vh;
    overflow-y: auto;
    padding: 1rem;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-top: 1rem;
}

.transcript-text[b-5vog43pvtm] {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: inherit;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #212529;
    margin: 0;
}

[b-5vog43pvtm] mark {
    background-color: #fff176;
    padding: 0.1rem 0.2rem;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .transcript-header[b-5vog43pvtm] {
        flex-direction: column;
        align-items: flex-start;
    }

    .transcript-search[b-5vog43pvtm] {
        width: 100%;
    }

    .transcript-body[b-5vog43pvtm] {
        max-height: 80vh;
    }
}

/* WO-244: Highlight context display */

.context-label[b-5vog43pvtm] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6c757d;
    display: block;
    margin-bottom: 0.25rem;
}
/* /Components/Shared/TrendingView.razor.rz.scp.css */
/* WO-148/163/152/159/167: Trending View */

.trending-view[b-2gu09hh57t] {
    padding: 1rem 0;
}

/* Stats bar */
.stats-bar[b-2gu09hh57t] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.stat[b-2gu09hh57t] {
    text-align: center;
    min-width: 70px;
}

.stat-value[b-2gu09hh57t] {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #212529;
}

.stat-label[b-2gu09hh57t] {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Filters */
.filters-bar[b-2gu09hh57t] {
    margin-bottom: 1.5rem;
}

.period-filters[b-2gu09hh57t] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-pill[b-2gu09hh57t] {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #495057;
    cursor: pointer;
    min-height: 44px;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.filter-pill:hover[b-2gu09hh57t] {
    border-color: #007bff;
    color: #007bff;
}

.filter-pill.active[b-2gu09hh57t] {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

.filter-pill:focus-visible[b-2gu09hh57t] {
    outline: 3px solid #007bff;
    outline-offset: 2px;
}

/* Section titles */
.section-title[b-2gu09hh57t] {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #212529;
}

.tag-count[b-2gu09hh57t] {
    font-size: 0.75rem;
    font-weight: 600;
    background: #e9ecef;
    color: #6c757d;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
}

/* Tags grid */
.tags-grid[b-2gu09hh57t] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.tag-card[b-2gu09hh57t] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    position: relative;
}

.tag-card:hover[b-2gu09hh57t] {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tag-card:focus-visible[b-2gu09hh57t] {
    outline: 3px solid #007bff;
    outline-offset: 2px;
}

.tag-rank[b-2gu09hh57t] {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    font-size: 0.7rem;
    font-weight: 800;
    color: #adb5bd;
}

.tag-header[b-2gu09hh57t] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tag-color[b-2gu09hh57t] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.tag-name[b-2gu09hh57t] {
    font-size: 0.95rem;
    font-weight: 700;
    color: #212529;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Trend indicators */
.trend-indicator[b-2gu09hh57t] {
    font-size: 1rem;
    flex-shrink: 0;
}

.trend-up[b-2gu09hh57t] { color: #28a745; }
.trend-down[b-2gu09hh57t] { color: #dc3545; }
.trend-stable[b-2gu09hh57t] { color: #6c757d; }

.change-pct[b-2gu09hh57t] {
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.15rem;
}

/* Tag stats */
.tag-stats[b-2gu09hh57t] {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #6c757d;
}

.tag-stats span[b-2gu09hh57t] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Usage bar */
.usage-bar[b-2gu09hh57t] {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

.usage-fill[b-2gu09hh57t] {
    height: 100%;
    background: #007bff;
    border-radius: 3px;
    min-width: 2px;
    transition: width 0.3s ease;
}

.usage-label[b-2gu09hh57t] {
    font-size: 0.7rem;
    font-weight: 600;
    color: #6c757d;
}

/* Type distribution */
.type-distribution[b-2gu09hh57t] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
}

.type-item[b-2gu09hh57t] {
    display: grid;
    grid-template-columns: 1fr 120px 45px;
    gap: 0.75rem;
    align-items: center;
}

.type-name[b-2gu09hh57t] {
    font-weight: 600;
    font-size: 0.9rem;
    color: #212529;
}

.type-stats[b-2gu09hh57t] {
    font-size: 0.75rem;
    color: #6c757d;
}

.type-info[b-2gu09hh57t] {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.type-bar[b-2gu09hh57t] {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.type-fill[b-2gu09hh57t] {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
    min-width: 2px;
}

.type-pct[b-2gu09hh57t] {
    font-size: 0.8rem;
    font-weight: 600;
    color: #495057;
    text-align: right;
}

/* States */
.loading-skeleton[b-2gu09hh57t] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-stats[b-2gu09hh57t] {
    height: 80px;
    background: #e9ecef;
    border-radius: 12px;
    animation: pulse-b-2gu09hh57t 1.5s ease-in-out infinite;
}

.skeleton-filters[b-2gu09hh57t] {
    height: 44px;
    width: 300px;
    background: #e9ecef;
    border-radius: 20px;
    animation: pulse-b-2gu09hh57t 1.5s ease-in-out infinite;
}

.skeleton-grid[b-2gu09hh57t] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.skeleton-card[b-2gu09hh57t] {
    height: 140px;
    background: #e9ecef;
    border-radius: 12px;
    animation: pulse-b-2gu09hh57t 1.5s ease-in-out infinite;
}

@keyframes pulse-b-2gu09hh57t {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.empty-state[b-2gu09hh57t], .error-state[b-2gu09hh57t] {
    text-align: center;
    padding: 3rem 2rem;
    color: #6c757d;
}

.empty-state i[b-2gu09hh57t], .error-state i[b-2gu09hh57t] {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.error-state i[b-2gu09hh57t] { color: #dc3545; }

.empty-state h3[b-2gu09hh57t] {
    color: #212529;
    margin-bottom: 0.5rem;
}

.btn-retry[b-2gu09hh57t] {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
}

.btn-retry:hover[b-2gu09hh57t] {
    background: #0056b3;
}

/* Responsive */
@media (max-width: 992px) {
    .tags-grid[b-2gu09hh57t] {
        grid-template-columns: repeat(2, 1fr);
    }

    .skeleton-grid[b-2gu09hh57t] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tags-grid[b-2gu09hh57t] {
        grid-template-columns: 1fr;
    }

    .skeleton-grid[b-2gu09hh57t] {
        grid-template-columns: 1fr;
    }

    .type-item[b-2gu09hh57t] {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .type-bar[b-2gu09hh57t] {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .loading-skeleton *[b-2gu09hh57t] {
        animation: none !important;
    }

    .usage-fill[b-2gu09hh57t], .tag-card[b-2gu09hh57t] {
        transition: none;
    }
}
