/* /Apps/BusinessModelCanvas/Pages/BusinessModelCanvasPage.razor.rz.scp.css */
/* Business Model Canvas Container */
.bmc-container[b-e2c3t1ghli] {
    min-height: calc(100vh - 60px);
    height: auto;
    background: var(--bg-secondary);
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

/* Header Section */
.bmc-header[b-e2c3t1ghli] {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-primary);
}

.header-content[b-e2c3t1ghli] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.header-left[b-e2c3t1ghli] {
    flex: 1;
}

.page-title[b-e2c3t1ghli] {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-title i[b-e2c3t1ghli] {
    background: var(--gradient-royal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle[b-e2c3t1ghli] {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.header-actions[b-e2c3t1ghli] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn[b-e2c3t1ghli] {
    padding: 0.65rem 1.25rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn i[b-e2c3t1ghli] {
    font-size: 1rem;
}

.btn-primary[b-e2c3t1ghli] {
    background: var(--gradient-royal);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover[b-e2c3t1ghli] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary[b-e2c3t1ghli] {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1.5px solid var(--border-primary);
}

.btn-secondary:hover[b-e2c3t1ghli] {
    background: var(--bg-primary);
    border-color: var(--primary-400);
}

.btn-success[b-e2c3t1ghli] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-success:hover[b-e2c3t1ghli] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-danger[b-e2c3t1ghli] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-danger:hover[b-e2c3t1ghli] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-sm[b-e2c3t1ghli] {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Alert Messages */
.alert[b-e2c3t1ghli] {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    position: relative;
}

.alert i[b-e2c3t1ghli] {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.alert-success[b-e2c3t1ghli] {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-danger[b-e2c3t1ghli] {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert-dismissible[b-e2c3t1ghli] {
    padding-right: 3rem;
}

.close-btn[b-e2c3t1ghli] {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1.25rem;
    opacity: 0.7;
    transition: opacity var(--transition-base);
}

.close-btn:hover[b-e2c3t1ghli] {
    opacity: 1;
}

/* Canvas Info Section */
.canvas-info-section[b-e2c3t1ghli] {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-primary);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
}

.info-group[b-e2c3t1ghli] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-group label[b-e2c3t1ghli] {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-control[b-e2c3t1ghli] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-primary);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--bg-secondary);
    transition: all var(--transition-base);
    font-family: inherit;
}

.form-control:focus[b-e2c3t1ghli] {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Persisted Data Styling */
.persisted-data[b-e2c3t1ghli] {
    background: #f0f4ff !important;
    border-left: 3px solid #6366f1 !important;
}

[data-theme="dark"] .persisted-data[b-e2c3t1ghli] {
    background: #1a1f3a !important;
    border-left: 3px solid #818cf8 !important;
}

/* Canvas Grid - Classic BMC Layout */
.canvas-grid[b-e2c3t1ghli] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto auto auto;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Block positioning in the classic BMC layout */
.key-partners[b-e2c3t1ghli] {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.key-activities[b-e2c3t1ghli] {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.key-resources[b-e2c3t1ghli] {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.value-propositions[b-e2c3t1ghli] {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

.customer-relationships[b-e2c3t1ghli] {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.channels[b-e2c3t1ghli] {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

.customer-segments[b-e2c3t1ghli] {
    grid-column: 5 / 6;
    grid-row: 1 / 3;
}

.cost-structure[b-e2c3t1ghli] {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
}

.revenue-streams[b-e2c3t1ghli] {
    grid-column: 3 / 6;
    grid-row: 3 / 4;
}

/* Canvas Block Styling */
.canvas-block[b-e2c3t1ghli] {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-primary);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    min-height: 300px;
    transition: all var(--transition-base);
}

.canvas-block:hover[b-e2c3t1ghli] {
    border-color: var(--primary-400);
    box-shadow: var(--shadow-md);
}

.block-header[b-e2c3t1ghli] {
    background: var(--gradient-royal);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.block-header i[b-e2c3t1ghli] {
    font-size: 1.25rem;
}

.block-header h3[b-e2c3t1ghli] {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.block-content[b-e2c3t1ghli] {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
}

.block-hint[b-e2c3t1ghli] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.canvas-item[b-e2c3t1ghli] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.item-bullet[b-e2c3t1ghli] {
    color: var(--primary-600);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.item-input[b-e2c3t1ghli] {
    flex: 1;
    padding: 0.65rem 0.85rem;
    border: 1.5px solid var(--border-primary);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--bg-secondary);
    transition: all var(--transition-base);
    font-family: inherit;
}

.item-input:focus[b-e2c3t1ghli] {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.item-input[b-e2c3t1ghli]::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
    font-size: 0.85rem;
}

.btn-icon-delete[b-e2c3t1ghli] {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.btn-icon-delete:hover[b-e2c3t1ghli] {
    background: #fee2e2;
    color: #dc2626;
}

.btn-add-item[b-e2c3t1ghli] {
    background: var(--bg-secondary);
    border: 1.5px dashed var(--border-primary);
    color: var(--primary-600);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

.btn-add-item:hover[b-e2c3t1ghli] {
    background: var(--bg-primary);
    border-color: var(--primary-400);
    border-style: solid;
}

.btn-add-item i[b-e2c3t1ghli] {
    font-size: 1rem;
}

/* Notes Section */
.notes-section[b-e2c3t1ghli] {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-primary);
}

.notes-header[b-e2c3t1ghli] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.notes-header i[b-e2c3t1ghli] {
    font-size: 1.5rem;
    color: var(--primary-600);
}

.notes-header h3[b-e2c3t1ghli] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.notes-textarea[b-e2c3t1ghli] {
    resize: vertical;
    min-height: 120px;
}

/* Canvas Statistics */
.canvas-stats[b-e2c3t1ghli] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-card[b-e2c3t1ghli] {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-base);
}

.stat-card:hover[b-e2c3t1ghli] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-400);
}

.stat-card i[b-e2c3t1ghli] {
    font-size: 2rem;
    color: var(--primary-600);
}

.stat-content[b-e2c3t1ghli] {
    flex: 1;
}

.stat-value[b-e2c3t1ghli] {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-label[b-e2c3t1ghli] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Modal Styles */
.modal-overlay[b-e2c3t1ghli] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
    animation: fadeIn-b-e2c3t1ghli 0.2s ease;
}

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

.modal-content[b-e2c3t1ghli] {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-primary);
}

.modal-header[b-e2c3t1ghli] {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3[b-e2c3t1ghli] {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-header i[b-e2c3t1ghli] {
    color: var(--primary-600);
}

.btn-close[b-e2c3t1ghli] {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    font-size: 1.25rem;
}

.btn-close:hover[b-e2c3t1ghli] {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.modal-body[b-e2c3t1ghli] {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.modal-description[b-e2c3t1ghli] {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Templates Grid */
.templates-grid[b-e2c3t1ghli] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.template-card[b-e2c3t1ghli] {
    background: var(--bg-secondary);
    border: 1.5px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
}

.template-card:hover[b-e2c3t1ghli] {
    border-color: var(--primary-400);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.template-icon[b-e2c3t1ghli] {
    font-size: 2.5rem;
    color: var(--primary-600);
    margin-bottom: 1rem;
}

.template-card h4[b-e2c3t1ghli] {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.template-card p[b-e2c3t1ghli] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.template-badge[b-e2c3t1ghli] {
    display: inline-block;
    background: var(--primary-500);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Saved Canvases List */
.saved-canvases-list[b-e2c3t1ghli] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.saved-canvas-item[b-e2c3t1ghli] {
    background: var(--bg-secondary);
    border: 1.5px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transition: all var(--transition-base);
}

.saved-canvas-item:hover[b-e2c3t1ghli] {
    border-color: var(--primary-400);
    box-shadow: var(--shadow-sm);
}

.saved-canvas-info[b-e2c3t1ghli] {
    flex: 1;
}

.saved-canvas-info h4[b-e2c3t1ghli] {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.saved-date[b-e2c3t1ghli] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.saved-description[b-e2c3t1ghli] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    font-style: italic;
}

.saved-canvas-actions[b-e2c3t1ghli] {
    display: flex;
    gap: 0.5rem;
}

/* Empty State */
.empty-state[b-e2c3t1ghli] {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-secondary);
}

.empty-state i[b-e2c3t1ghli] {
    font-size: 4rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.empty-state p[b-e2c3t1ghli] {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.empty-hint[b-e2c3t1ghli] {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Export Options */
.export-options[b-e2c3t1ghli] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.export-option[b-e2c3t1ghli] {
    background: var(--bg-secondary);
    border: 1.5px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.export-option:hover[b-e2c3t1ghli] {
    border-color: var(--primary-400);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.export-option i[b-e2c3t1ghli] {
    font-size: 2.5rem;
    color: var(--primary-600);
}

.export-option span[b-e2c3t1ghli] {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.export-option small[b-e2c3t1ghli] {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .canvas-grid[b-e2c3t1ghli] {
        grid-template-columns: repeat(3, 1fr);
    }

    .key-partners[b-e2c3t1ghli] {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .key-activities[b-e2c3t1ghli] {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .key-resources[b-e2c3t1ghli] {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .value-propositions[b-e2c3t1ghli] {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
    }

    .customer-relationships[b-e2c3t1ghli] {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }

    .channels[b-e2c3t1ghli] {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .customer-segments[b-e2c3t1ghli] {
        grid-column: 3 / 4;
        grid-row: 2 / 4;
    }

    .cost-structure[b-e2c3t1ghli] {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }

    .revenue-streams[b-e2c3t1ghli] {
        grid-column: 2 / 4;
        grid-row: 4 / 5;
    }
}

@media (max-width: 992px) {
    .bmc-container[b-e2c3t1ghli] {
        padding: 1.5rem 1rem;
    }

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

    .header-actions[b-e2c3t1ghli] {
        width: 100%;
    }

    .btn[b-e2c3t1ghli] {
        flex: 1;
    }

    .canvas-info-section[b-e2c3t1ghli] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .canvas-grid[b-e2c3t1ghli] {
        grid-template-columns: repeat(2, 1fr);
    }

    .key-partners[b-e2c3t1ghli] {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .key-activities[b-e2c3t1ghli] {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .key-resources[b-e2c3t1ghli] {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .value-propositions[b-e2c3t1ghli] {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .customer-relationships[b-e2c3t1ghli] {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .channels[b-e2c3t1ghli] {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .customer-segments[b-e2c3t1ghli] {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }

    .cost-structure[b-e2c3t1ghli] {
        grid-column: 2 / 3;
        grid-row: 4 / 5;
    }

    .revenue-streams[b-e2c3t1ghli] {
        grid-column: 1 / 3;
        grid-row: 5 / 6;
    }

    .canvas-stats[b-e2c3t1ghli] {
        grid-template-columns: 1fr;
    }

    .export-options[b-e2c3t1ghli] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bmc-container[b-e2c3t1ghli] {
        padding: 1rem 0.75rem;
    }

    .page-title[b-e2c3t1ghli] {
        font-size: 1.5rem;
    }

    .page-subtitle[b-e2c3t1ghli] {
        font-size: 0.85rem;
    }

    .header-actions[b-e2c3t1ghli] {
        flex-direction: column;
    }

    .btn[b-e2c3t1ghli] {
        width: 100%;
    }

    .canvas-grid[b-e2c3t1ghli] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .canvas-block[b-e2c3t1ghli] {
        grid-column: 1 / 2 !important;
        grid-row: auto !important;
        min-height: 250px;
    }

    .block-header h3[b-e2c3t1ghli] {
        font-size: 0.9rem;
    }

    .templates-grid[b-e2c3t1ghli] {
        grid-template-columns: 1fr;
    }

    .saved-canvas-item[b-e2c3t1ghli] {
        flex-direction: column;
        align-items: flex-start;
    }

    .saved-canvas-actions[b-e2c3t1ghli] {
        width: 100%;
    }

    .saved-canvas-actions .btn[b-e2c3t1ghli] {
        flex: 1;
    }
}

@media (max-width: 576px) {
    .bmc-header[b-e2c3t1ghli] {
        padding: 1rem;
    }

    .page-title[b-e2c3t1ghli] {
        font-size: 1.3rem;
    }

    .canvas-info-section[b-e2c3t1ghli] {
        padding: 1rem;
    }

    .notes-section[b-e2c3t1ghli] {
        padding: 1rem;
    }

    .modal-content[b-e2c3t1ghli] {
        max-width: 100%;
        border-radius: var(--radius-lg);
    }

    .modal-header[b-e2c3t1ghli] {
        padding: 1rem;
    }

    .modal-header h3[b-e2c3t1ghli] {
        font-size: 1.1rem;
    }

    .modal-body[b-e2c3t1ghli] {
        padding: 1rem;
    }
}

/* ===================================
   QUICK GUIDE MODAL
   =================================== */

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

@keyframes scaleIn-b-e2c3t1ghli {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-overlay.guide-overlay[b-e2c3t1ghli] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn-b-e2c3t1ghli 0.2s ease;
}

.modal-container.guide-modal[b-e2c3t1ghli] {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn-b-e2c3t1ghli 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .modal-container.guide-modal[b-e2c3t1ghli] {
    background: #2d2d2d;
}

.guide-modal .modal-header[b-e2c3t1ghli] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-modal .modal-header h5[b-e2c3t1ghli] {
    margin: 0;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guide-modal .btn-close[b-e2c3t1ghli] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guide-modal .modal-header[b-e2c3t1ghli] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-modal .modal-header h5[b-e2c3t1ghli] {
    margin: 0;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guide-modal .btn-close[b-e2c3t1ghli] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guide-modal .btn-close:hover[b-e2c3t1ghli] {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.guide-body[b-e2c3t1ghli] {
    padding: 1.5rem;
}

.guide-intro[b-e2c3t1ghli] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.guide-intro p[b-e2c3t1ghli] {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.guide-section[b-e2c3t1ghli] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.guide-step[b-e2c3t1ghli] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid #6366f1;
    transition: all 0.2s ease;
}

[data-theme="dark"] .guide-step[b-e2c3t1ghli] {
    background: #2d2d2d;
    border-left-color: #8b5cf6;
}

.guide-step:hover[b-e2c3t1ghli] {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number[b-e2c3t1ghli] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.step-content[b-e2c3t1ghli] {
    flex: 1;
}

.step-content h6[b-e2c3t1ghli] {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .step-content h6[b-e2c3t1ghli] {
    color: #e5e7eb;
}

.step-content h6 i[b-e2c3t1ghli] {
    font-size: 1.1rem;
}

.step-content p[b-e2c3t1ghli] {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

[data-theme="dark"] .step-content p[b-e2c3t1ghli] {
    color: #9ca3af;
}

.guide-tips[b-e2c3t1ghli] {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1.25rem;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
}

[data-theme="dark"] .guide-tips[b-e2c3t1ghli] {
    background: linear-gradient(135deg, #78350f, #92400e);
    border-left-color: #fbbf24;
}

.guide-tips h6[b-e2c3t1ghli] {
    margin: 0 0 0.75rem 0;
    font-weight: 700;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .guide-tips h6[b-e2c3t1ghli] {
    color: #fbbf24;
}

.guide-tips h6 i[b-e2c3t1ghli] {
    color: #f59e0b;
}

[data-theme="dark"] .guide-tips h6 i[b-e2c3t1ghli] {
    color: #fbbf24;
}

.guide-tips ul[b-e2c3t1ghli] {
    margin: 0;
    padding-left: 1.5rem;
}

.guide-tips li[b-e2c3t1ghli] {
    color: #78350f;
    font-size: 0.9rem;
    line-height: 1.8;
}

[data-theme="dark"] .guide-tips li[b-e2c3t1ghli] {
    color: #fde68a;
}

.guide-tips strong[b-e2c3t1ghli] {
    color: #92400e;
    font-weight: 600;
}

[data-theme="dark"] .guide-tips strong[b-e2c3t1ghli] {
    color: #fbbf24;
}

/* Text color helpers */
.text-success[b-e2c3t1ghli] {
    color: #10b981;
}

.text-primary[b-e2c3t1ghli] {
    color: #3b82f6;
}

.text-info[b-e2c3t1ghli] {
    color: #06b6d4;
}

.text-warning[b-e2c3t1ghli] {
    color: #f59e0b;
}

/* Guide modal body and footer */
.guide-modal .modal-body[b-e2c3t1ghli] {
    padding: 2rem;
    max-height: calc(85vh - 180px);
    overflow-y: auto;
}

.guide-modal .modal-footer[b-e2c3t1ghli] {
    padding: 1.5rem 2rem;
    background: #f9fafb;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    border-top: 2px solid #e5e7eb;
}

[data-theme="dark"] .guide-modal .modal-footer[b-e2c3t1ghli] {
    background: #1a1a1a;
    border-top-color: #444;
}

.guide-modal .btn-primary[b-e2c3t1ghli] {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.guide-modal .btn-primary:hover[b-e2c3t1ghli] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Mobile responsiveness for guide */
@media (max-width: 768px) {
    .guide-modal[b-e2c3t1ghli] {
        max-width: 95%;
        max-height: 90vh;
    }

    .guide-step[b-e2c3t1ghli] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .step-number[b-e2c3t1ghli] {
        align-self: flex-start;
    }
}
/* /Apps/DecisionHelper/Pages/DecisionHelperPage.razor.rz.scp.css */
/* Decision Helper Main Container */
.decision-helper-container[b-miqizy5011] {
    min-height: calc(100vh - 60px);
    height: auto;
    padding: 2rem;
    overflow-y: auto;
    background: #f8f9fa;
}

[data-theme="dark"] .decision-helper-container[b-miqizy5011] {
    background: #1a1a1a;
}

/* Header Section */
.decision-header[b-miqizy5011] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
}

[data-theme="dark"] .decision-header[b-miqizy5011] {
    border-bottom-color: #374151;
}

.decision-title[b-miqizy5011] {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

[data-theme="dark"] .decision-title[b-miqizy5011] {
    color: #f9fafb;
}

.decision-title i[b-miqizy5011] {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.decision-subtitle[b-miqizy5011] {
    color: #6b7280;
    margin: 0.5rem 0 0 0;
    font-size: 1rem;
}

[data-theme="dark"] .decision-subtitle[b-miqizy5011] {
    color: #9ca3af;
}

.decision-actions[b-miqizy5011] {
    display: flex;
    gap: 0.75rem;
}

.btn-template[b-miqizy5011], .btn-history[b-miqizy5011], .btn-clear[b-miqizy5011], .btn-export[b-miqizy5011], .btn-save[b-miqizy5011], .btn-copy[b-miqizy5011] {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-template[b-miqizy5011] {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.btn-template:hover[b-miqizy5011] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.btn-history[b-miqizy5011] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.btn-history:hover[b-miqizy5011] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-clear[b-miqizy5011] {
    background: #e5e7eb;
    color: #111827;
}

[data-theme="dark"] .btn-clear[b-miqizy5011] {
    background: #374151;
    color: #f9fafb;
}

.btn-clear:hover[b-miqizy5011] {
    background: #ef4444;
    color: white;
    transform: translateY(-2px);
}

.btn-help[b-miqizy5011] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.btn-help:hover[b-miqizy5011] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Template Selector */
.template-selector[b-miqizy5011] {
    background: white;
    border: 2px solid #6366f1;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
}

[data-theme="dark"] .template-selector[b-miqizy5011] {
    background: #1f2937;
    border-color: #8b5cf6;
}

.template-selector h3[b-miqizy5011] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .template-selector h3[b-miqizy5011] {
    color: #f9fafb;
}

.template-grid[b-miqizy5011] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.template-card[b-miqizy5011] {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

[data-theme="dark"] .template-card[b-miqizy5011] {
    background: #111827;
    border-color: #374151;
}

.template-card:hover[b-miqizy5011] {
    border-color: #6366f1;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

.template-card h4[b-miqizy5011] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.5rem 0;
}

[data-theme="dark"] .template-card h4[b-miqizy5011] {
    color: #f9fafb;
}

.template-card p[b-miqizy5011] {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0 0 1rem 0;
}

[data-theme="dark"] .template-card p[b-miqizy5011] {
    color: #9ca3af;
}

.template-stats[b-miqizy5011] {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #6b7280;
}

[data-theme="dark"] .template-stats[b-miqizy5011] {
    color: #9ca3af;
}

.template-stats span[b-miqizy5011] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-close-templates[b-miqizy5011] {
    width: 100%;
    padding: 0.75rem;
    background: #e5e7eb;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

[data-theme="dark"] .btn-close-templates[b-miqizy5011] {
    background: #374151;
    color: #f9fafb;
}

.btn-close-templates:hover[b-miqizy5011] {
    background: #d1d5db;
}

[data-theme="dark"] .btn-close-templates:hover[b-miqizy5011] {
    background: #4b5563;
}

/* Decision Setup */
.decision-setup[b-miqizy5011] {
    margin-bottom: 2rem;
}

.decision-info-panel[b-miqizy5011] {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .decision-info-panel[b-miqizy5011] {
    background: #1f2937;
    border-color: #374151;
}

.form-group[b-miqizy5011] {
    margin-bottom: 1rem;
}

.form-group:last-child[b-miqizy5011] {
    margin-bottom: 0;
}

.form-group label[b-miqizy5011] {
    display: block;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

[data-theme="dark"] .form-group label[b-miqizy5011] {
    color: #f9fafb;
}

.form-control[b-miqizy5011] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: #111827;
    transition: all 0.3s ease;
}

[data-theme="dark"] .form-control[b-miqizy5011] {
    background: #111827;
    color: #f9fafb;
    border-color: #374151;
}

.form-control:focus[b-miqizy5011] {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-control-sm[b-miqizy5011] {
    padding: 0.5rem;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

textarea.form-control[b-miqizy5011] {
    resize: vertical;
}

/* Persisted data styling */
.persisted-data[b-miqizy5011] {
    background-color: #f0f4ff;
    border-left: 4px solid #6366f1;
}

[data-theme="dark"] .persisted-data[b-miqizy5011] {
    background-color: #1a1f3a;
    border-left-color: #818cf8;
}

/* Decision Content - Options and Criteria */
.decision-content[b-miqizy5011] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.panel[b-miqizy5011] {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

[data-theme="dark"] .panel[b-miqizy5011] {
    background: #1f2937;
    border-color: #374151;
}

.panel-header[b-miqizy5011] {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-header h3[b-miqizy5011] {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-add[b-miqizy5011] {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-add:hover[b-miqizy5011] {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.panel-body[b-miqizy5011] {
    padding: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
}

.option-item[b-miqizy5011], .criterion-item[b-miqizy5011] {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

[data-theme="dark"] .option-item[b-miqizy5011],
[data-theme="dark"] .criterion-item[b-miqizy5011] {
    background: #111827;
    border-color: #374151;
}

.option-item:hover[b-miqizy5011], .criterion-item:hover[b-miqizy5011] {
    border-color: #6366f1;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

.option-input[b-miqizy5011], .criterion-input[b-miqizy5011] {
    flex: 1;
}

.weight-control[b-miqizy5011] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.weight-control label[b-miqizy5011] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
}

[data-theme="dark"] .weight-control label[b-miqizy5011] {
    color: #9ca3af;
}

.weight-control input[type="range"][b-miqizy5011] {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: #e5e7eb;
    outline: none;
}

[data-theme="dark"] .weight-control input[type="range"][b-miqizy5011] {
    background: #374151;
}

.weight-control input[type="range"][b-miqizy5011]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #6366f1;
    cursor: pointer;
}

.weight-value[b-miqizy5011] {
    font-weight: 700;
    color: #6366f1;
    min-width: 25px;
    text-align: center;
}

.btn-delete[b-miqizy5011] {
    background: #fee2e2;
    color: #dc2626;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-delete:hover[b-miqizy5011] {
    background: #dc2626;
    color: white;
    transform: scale(1.05);
}

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

[data-theme="dark"] .empty-state[b-miqizy5011] {
    color: #9ca3af;
}

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

/* Scoring Matrix */
.scoring-section[b-miqizy5011] {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .scoring-section[b-miqizy5011] {
    background: #1f2937;
    border-color: #374151;
}

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

[data-theme="dark"] .section-header[b-miqizy5011] {
    border-bottom-color: #374151;
}

.section-header h3[b-miqizy5011] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .section-header h3[b-miqizy5011] {
    color: #f9fafb;
}

.section-header p[b-miqizy5011] {
    color: #6b7280;
    margin: 0.5rem 0 0 0;
    font-size: 0.9rem;
}

[data-theme="dark"] .section-header p[b-miqizy5011] {
    color: #9ca3af;
}

.result-actions[b-miqizy5011] {
    display: flex;
    gap: 0.5rem;
}

.btn-export[b-miqizy5011] {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    font-size: 0.9rem;
}

.btn-export:hover[b-miqizy5011] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.scoring-matrix[b-miqizy5011] {
    overflow-x: auto;
}

.matrix-table[b-miqizy5011] {
    display: table;
    width: 100%;
    min-width: 800px;
}

.matrix-header-row[b-miqizy5011], .matrix-row[b-miqizy5011] {
    display: table-row;
}

.matrix-corner[b-miqizy5011], .matrix-header-cell[b-miqizy5011], .matrix-option-cell[b-miqizy5011], .matrix-score-cell[b-miqizy5011] {
    display: table-cell;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    vertical-align: middle;
}

[data-theme="dark"] .matrix-corner[b-miqizy5011],
[data-theme="dark"] .matrix-header-cell[b-miqizy5011],
[data-theme="dark"] .matrix-option-cell[b-miqizy5011],
[data-theme="dark"] .matrix-score-cell[b-miqizy5011] {
    border-color: #374151;
}

.matrix-corner[b-miqizy5011] {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.matrix-header-cell[b-miqizy5011] {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    text-align: center;
    font-weight: 600;
}

[data-theme="dark"] .matrix-header-cell[b-miqizy5011] {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
}

.criterion-name[b-miqizy5011] {
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

[data-theme="dark"] .criterion-name[b-miqizy5011] {
    color: #f9fafb;
}

.criterion-weight[b-miqizy5011] {
    font-size: 0.8rem;
    color: #6b7280;
}

[data-theme="dark"] .criterion-weight[b-miqizy5011] {
    color: #9ca3af;
}

.matrix-option-cell[b-miqizy5011] {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    font-weight: 700;
    color: #92400e;
}

[data-theme="dark"] .matrix-option-cell[b-miqizy5011] {
    background: linear-gradient(135deg, #78350f 0%, #92400e 100%);
    color: #fef3c7;
}

.option-name[b-miqizy5011] {
    font-size: 1rem;
}

.matrix-score-cell[b-miqizy5011] {
    text-align: center;
    background: white;
}

[data-theme="dark"] .matrix-score-cell[b-miqizy5011] {
    background: #111827;
}

.score-slider[b-miqizy5011] {
    width: 100%;
    margin-bottom: 0.5rem;
}

.score-display[b-miqizy5011] {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.score-bar[b-miqizy5011] {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

[data-theme="dark"] .score-bar[b-miqizy5011] {
    background: #374151;
}

.score-bar-fill[b-miqizy5011] {
    height: 100%;
    transition: width 0.3s ease;
}

/* Results Section */
.results-section[b-miqizy5011] {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .results-section[b-miqizy5011] {
    background: #1f2937;
    border-color: #374151;
}

.analysis-summary[b-miqizy5011] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.summary-card[b-miqizy5011] {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

[data-theme="dark"] .summary-card[b-miqizy5011] {
    background: #111827;
    border-color: #374151;
}

.summary-card.best-option[b-miqizy5011] {
    border-color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.summary-icon[b-miqizy5011] {
    font-size: 2.5rem;
    color: #6366f1;
}

.best-option .summary-icon[b-miqizy5011] {
    color: #10b981;
}

.summary-content h4[b-miqizy5011] {
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

[data-theme="dark"] .summary-content h4[b-miqizy5011] {
    color: #9ca3af;
}

.best-option-name[b-miqizy5011] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    margin: 0;
}

.best-option-score[b-miqizy5011] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #6b7280;
    margin: 0.5rem 0 0 0;
}

[data-theme="dark"] .best-option-score[b-miqizy5011] {
    color: #9ca3af;
}

.summary-content p[b-miqizy5011] {
    color: #111827;
    margin: 0;
    line-height: 1.6;
}

[data-theme="dark"] .summary-content p[b-miqizy5011] {
    color: #f9fafb;
}

/* Rankings */
.rankings[b-miqizy5011] {
    margin-bottom: 2rem;
}

.rankings h4[b-miqizy5011] {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .rankings h4[b-miqizy5011] {
    color: #f9fafb;
}

.ranking-item[b-miqizy5011] {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

[data-theme="dark"] .ranking-item[b-miqizy5011] {
    background: #111827;
    border-color: #374151;
}

.ranking-item:hover[b-miqizy5011] {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

.ranking-item.winner[b-miqizy5011] {
    border-color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.ranking-position[b-miqizy5011] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6b7280;
    min-width: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] .ranking-position[b-miqizy5011] {
    color: #9ca3af;
}

.winner .ranking-position[b-miqizy5011] {
    color: #10b981;
    font-size: 2rem;
}

.ranking-content[b-miqizy5011] {
    flex: 1;
}

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

.ranking-header h5[b-miqizy5011] {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

[data-theme="dark"] .ranking-header h5[b-miqizy5011] {
    color: #f9fafb;
}

.ranking-score[b-miqizy5011] {
    font-size: 1.3rem;
    font-weight: 700;
    color: #6366f1;
}

.ranking-bar-container[b-miqizy5011] {
    width: 100%;
    height: 10px;
    background: #e5e7eb;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .ranking-bar-container[b-miqizy5011] {
    background: #374151;
}

.ranking-bar-fill[b-miqizy5011] {
    height: 100%;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    transition: width 0.5s ease;
}

.winner .ranking-bar-fill[b-miqizy5011] {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.ranking-description[b-miqizy5011] {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

[data-theme="dark"] .ranking-description[b-miqizy5011] {
    color: #9ca3af;
}

/* Detailed Scores */
.detailed-scores[b-miqizy5011] {
    margin-top: 2rem;
}

.detailed-scores h4[b-miqizy5011] {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .detailed-scores h4[b-miqizy5011] {
    color: #f9fafb;
}

.detailed-scores-grid[b-miqizy5011] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.detailed-score-card[b-miqizy5011] {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
}

[data-theme="dark"] .detailed-score-card[b-miqizy5011] {
    background: #111827;
    border-color: #374151;
}

.detailed-score-card h5[b-miqizy5011] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

[data-theme="dark"] .detailed-score-card h5[b-miqizy5011] {
    color: #f9fafb;
    border-bottom-color: #374151;
}

.score-breakdown[b-miqizy5011] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.score-item[b-miqizy5011] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: white;
    border-radius: 6px;
}

[data-theme="dark"] .score-item[b-miqizy5011] {
    background: #1f2937;
}

.score-criterion[b-miqizy5011] {
    font-size: 0.9rem;
    color: #111827;
    flex: 1;
}

[data-theme="dark"] .score-criterion[b-miqizy5011] {
    color: #f9fafb;
}

.score-details[b-miqizy5011] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.score-raw[b-miqizy5011], .score-weight[b-miqizy5011], .score-weighted[b-miqizy5011] {
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    background: #e5e7eb;
    color: #111827;
}

[data-theme="dark"] .score-raw[b-miqizy5011],
[data-theme="dark"] .score-weight[b-miqizy5011],
[data-theme="dark"] .score-weighted[b-miqizy5011] {
    background: #374151;
    color: #f9fafb;
}

.score-weighted[b-miqizy5011] {
    background: #6366f1;
    color: white;
}

.score-multiply[b-miqizy5011], .score-equals[b-miqizy5011] {
    color: #6b7280;
    font-weight: 400;
}

[data-theme="dark"] .score-multiply[b-miqizy5011],
[data-theme="dark"] .score-equals[b-miqizy5011] {
    color: #9ca3af;
}

/* Getting Started */
.getting-started[b-miqizy5011] {
    background: white;
    border: 2px dashed #d1d5db;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin-top: 2rem;
}

[data-theme="dark"] .getting-started[b-miqizy5011] {
    background: #1f2937;
    border-color: #4b5563;
}

.getting-started-content i[b-miqizy5011] {
    font-size: 4rem;
    color: #6366f1;
    margin-bottom: 1rem;
}

.getting-started-content h3[b-miqizy5011] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

[data-theme="dark"] .getting-started-content h3[b-miqizy5011] {
    color: #f9fafb;
}

.getting-started-content ol[b-miqizy5011] {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 1.5rem;
}

.getting-started-content li[b-miqizy5011] {
    font-size: 1rem;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

[data-theme="dark"] .getting-started-content li[b-miqizy5011] {
    color: #f9fafb;
}

.getting-started-content li strong[b-miqizy5011] {
    color: #6366f1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .decision-helper-container[b-miqizy5011] {
        padding: 1rem;
    }

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

    .decision-title[b-miqizy5011] {
        font-size: 1.5rem;
    }

    .decision-content[b-miqizy5011] {
        grid-template-columns: 1fr;
    }

    .analysis-summary[b-miqizy5011] {
        grid-template-columns: 1fr;
    }

    .template-grid[b-miqizy5011] {
        grid-template-columns: 1fr;
    }

    .scoring-matrix[b-miqizy5011] {
        overflow-x: scroll;
    }

    .detailed-scores-grid[b-miqizy5011] {
        grid-template-columns: 1fr;
    }

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

    .result-actions[b-miqizy5011] {
        width: 100%;
    }

    .btn-export[b-miqizy5011] {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .decision-helper-container[b-miqizy5011] {
        padding: 0.75rem;
    }

    .decision-title[b-miqizy5011] {
        font-size: 1.3rem;
    }

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

    .btn-template[b-miqizy5011], .btn-history[b-miqizy5011], .btn-clear[b-miqizy5011] {
        width: 100%;
    }

    .panel-body[b-miqizy5011] {
        max-height: 300px;
    }

    .result-actions[b-miqizy5011] {
        flex-direction: column;
    }

    .btn-export[b-miqizy5011] {
        width: 100%;
    }

    .insights-grid[b-miqizy5011] {
        grid-template-columns: 1fr;
    }
}

/* Completeness Indicator */
.completeness-indicator[b-miqizy5011] {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #3b82f6;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

[data-theme="dark"] .completeness-indicator[b-miqizy5011] {
    background: linear-gradient(135deg, #1e3a5f 0%, #1e293b 100%);
    border-color: #3b82f6;
}

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

.completeness-info[b-miqizy5011] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.completeness-info i[b-miqizy5011] {
    font-size: 1.5rem;
    color: #3b82f6;
}

.completeness-label[b-miqizy5011] {
    font-weight: 600;
    color: #111827;
    font-size: 1rem;
}

[data-theme="dark"] .completeness-label[b-miqizy5011] {
    color: #f9fafb;
}

.completeness-percentage[b-miqizy5011] {
    font-weight: 700;
    font-size: 1.4rem;
    color: #3b82f6;
}

.completeness-details[b-miqizy5011] {
    font-size: 0.9rem;
    color: #6b7280;
}

[data-theme="dark"] .completeness-details[b-miqizy5011] {
    color: #9ca3af;
}

.completeness-bar[b-miqizy5011] {
    width: 100%;
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

[data-theme="dark"] .completeness-bar[b-miqizy5011] {
    background: #374151;
}

.completeness-bar-fill[b-miqizy5011] {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    transition: width 0.5s ease;
    border-radius: 6px;
}

/* Export & Action Buttons */
.btn-export[b-miqizy5011] {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    font-size: 0.9rem;
}

.btn-export:hover[b-miqizy5011] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-save[b-miqizy5011] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.btn-save:hover[b-miqizy5011] {
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-copy[b-miqizy5011] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.btn-copy:hover[b-miqizy5011] {
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Best Option Enhancement */
.best-option-desc[b-miqizy5011] {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

[data-theme="dark"] .best-option-desc[b-miqizy5011] {
    color: #9ca3af;
}

/* Confidence Meter */
.confidence-meter[b-miqizy5011] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

[data-theme="dark"] .confidence-meter[b-miqizy5011] {
    border-top-color: #374151;
}

.confidence-label[b-miqizy5011] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    min-width: 80px;
}

[data-theme="dark"] .confidence-label[b-miqizy5011] {
    color: #9ca3af;
}

.confidence-bar[b-miqizy5011] {
    flex: 1;
    height: 10px;
    background: #e5e7eb;
    border-radius: 5px;
    overflow: hidden;
}

[data-theme="dark"] .confidence-bar[b-miqizy5011] {
    background: #374151;
}

.confidence-bar-fill[b-miqizy5011] {
    height: 100%;
    transition: width 0.5s ease;
    border-radius: 5px;
}

.confidence-bar-fill.very-high[b-miqizy5011] {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.confidence-bar-fill.high[b-miqizy5011] {
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
}

.confidence-bar-fill.moderate[b-miqizy5011] {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.confidence-bar-fill.low[b-miqizy5011],
.confidence-bar-fill.very-low[b-miqizy5011] {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

.confidence-text[b-miqizy5011] {
    font-size: 0.9rem;
    font-weight: 700;
    min-width: 90px;
    text-align: right;
}

.confidence-bar-fill.very-high + .confidence-text[b-miqizy5011] {
    color: #10b981;
}

.confidence-bar-fill.high + .confidence-text[b-miqizy5011] {
    color: #3b82f6;
}

.confidence-bar-fill.moderate + .confidence-text[b-miqizy5011] {
    color: #f59e0b;
}

.confidence-bar-fill.low + .confidence-text[b-miqizy5011],
.confidence-bar-fill.very-low + .confidence-text[b-miqizy5011] {
    color: #ef4444;
}

/* Insights Panel */
.insights-panel[b-miqizy5011] {
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
}

[data-theme="dark"] .insights-panel[b-miqizy5011] {
    background: linear-gradient(135deg, #78350f 0%, #92400e 100%);
    border-color: #f59e0b;
}

.insights-panel h4[b-miqizy5011] {
    font-size: 1.3rem;
    font-weight: 700;
    color: #92400e;
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .insights-panel h4[b-miqizy5011] {
    color: #fef3c7;
}

.insights-grid[b-miqizy5011] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}

.insight-card[b-miqizy5011] {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

[data-theme="dark"] .insight-card[b-miqizy5011] {
    background: #1f2937;
    border-color: #374151;
}

.insight-card:hover[b-miqizy5011] {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.insight-header[b-miqizy5011] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

[data-theme="dark"] .insight-header[b-miqizy5011] {
    border-bottom-color: #374151;
}

.insight-rank[b-miqizy5011] {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.insight-header h5[b-miqizy5011] {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

[data-theme="dark"] .insight-header h5[b-miqizy5011] {
    color: #f9fafb;
}

.insight-score[b-miqizy5011] {
    font-weight: 700;
    font-size: 1.2rem;
    color: #6366f1;
}

.insight-section[b-miqizy5011] {
    margin-bottom: 1rem;
}

.insight-section:last-child[b-miqizy5011] {
    margin-bottom: 0;
}

.insight-label[b-miqizy5011] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.strengths .insight-label[b-miqizy5011] {
    color: #10b981;
}

.strengths .insight-label i[b-miqizy5011] {
    font-size: 1.1rem;
}

.weaknesses .insight-label[b-miqizy5011] {
    color: #ef4444;
}

.weaknesses .insight-label i[b-miqizy5011] {
    font-size: 1.1rem;
}

.insight-section ul[b-miqizy5011] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.insight-section li[b-miqizy5011] {
    padding: 0.4rem 0.75rem;
    margin-bottom: 0.4rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.strengths li[b-miqizy5011] {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border-left: 3px solid #10b981;
}

[data-theme="dark"] .strengths li[b-miqizy5011] {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.weaknesses li[b-miqizy5011] {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-left: 3px solid #ef4444;
}

[data-theme="dark"] .weaknesses li[b-miqizy5011] {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.insight-empty[b-miqizy5011] {
    color: #6b7280;
    font-style: italic;
    margin: 0;
    text-align: center;
    padding: 1rem;
}

[data-theme="dark"] .insight-empty[b-miqizy5011] {
    color: #9ca3af;
}

/* History Modal */
.modal-overlay[b-miqizy5011] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-content[b-miqizy5011] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

[data-theme="dark"] .modal-content[b-miqizy5011] {
    background: #1f2937;
}

.modal-header[b-miqizy5011] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #e5e7eb;
}

[data-theme="dark"] .modal-header[b-miqizy5011] {
    border-bottom-color: #374151;
}

.modal-header h3[b-miqizy5011] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .modal-header h3[b-miqizy5011] {
    color: #f9fafb;
}

.modal-close-btn[b-miqizy5011] {
    background: #e5e7eb;
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] .modal-close-btn[b-miqizy5011] {
    background: #374151;
    color: #f9fafb;
}

.modal-close-btn:hover[b-miqizy5011] {
    background: #ef4444;
    color: white;
    transform: rotate(90deg);
}

.modal-body[b-miqizy5011] {
    padding: 1.5rem 2rem;
    overflow-y: auto;
    flex: 1;
}

.saved-decisions-list[b-miqizy5011] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.saved-decision-item[b-miqizy5011] {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    gap: 1rem;
}

[data-theme="dark"] .saved-decision-item[b-miqizy5011] {
    background: #111827;
    border-color: #374151;
}

.saved-decision-item:hover[b-miqizy5011] {
    border-color: #6366f1;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.saved-decision-info[b-miqizy5011] {
    flex: 1;
}

.saved-decision-info h4[b-miqizy5011] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.5rem 0;
}

[data-theme="dark"] .saved-decision-info h4[b-miqizy5011] {
    color: #f9fafb;
}

.saved-decision-meta[b-miqizy5011] {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .saved-decision-meta[b-miqizy5011] {
    color: #9ca3af;
}

.saved-decision-desc[b-miqizy5011] {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0 0 0.75rem 0;
}

[data-theme="dark"] .saved-decision-desc[b-miqizy5011] {
    color: #9ca3af;
}

.saved-decision-stats[b-miqizy5011] {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #6b7280;
}

[data-theme="dark"] .saved-decision-stats[b-miqizy5011] {
    color: #9ca3af;
}

.saved-decision-stats span[b-miqizy5011] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.saved-decision-actions[b-miqizy5011] {
    display: flex;
    align-items: center;
}

.btn-delete-history[b-miqizy5011] {
    background: #fee2e2;
    color: #dc2626;
    border: none;
    padding: 0.6rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-delete-history:hover[b-miqizy5011] {
    background: #dc2626;
    color: white;
    transform: scale(1.1);
}

.empty-history[b-miqizy5011] {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-history i[b-miqizy5011] {
    font-size: 4rem;
    color: #6b7280;
    opacity: 0.5;
    display: block;
    margin-bottom: 1rem;
}

[data-theme="dark"] .empty-history i[b-miqizy5011] {
    color: #9ca3af;
}

.empty-history p[b-miqizy5011] {
    color: #6b7280;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

[data-theme="dark"] .empty-history p[b-miqizy5011] {
    color: #9ca3af;
}

.empty-history-hint[b-miqizy5011] {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Toast Notification */
.toast-notification[b-miqizy5011] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    z-index: 2000;
    animation: slideInUp-b-miqizy5011 0.3s ease, fadeOut-b-miqizy5011 0.3s ease 2.7s;
}

.toast-notification i[b-miqizy5011] {
    font-size: 1.3rem;
}

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

@keyframes fadeOut-b-miqizy5011 {
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Guide Modal Styles */
.guide-modal[b-miqizy5011] {
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
}

.guide-body[b-miqizy5011] {
    padding: 1.5rem;
}

.guide-intro[b-miqizy5011] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.guide-intro p[b-miqizy5011] {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.guide-section[b-miqizy5011] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guide-step[b-miqizy5011] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid #6366f1;
    transition: all 0.2s ease;
}

[data-theme="dark"] .guide-step[b-miqizy5011] {
    background: #2d2d2d;
    border-left-color: #8b5cf6;
}

.guide-step:hover[b-miqizy5011] {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number[b-miqizy5011] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.step-content h6[b-miqizy5011] {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .step-content h6[b-miqizy5011] {
    color: #f9fafb;
}

.step-content p[b-miqizy5011] {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

[data-theme="dark"] .step-content p[b-miqizy5011] {
    color: #9ca3af;
}

.guide-tips[b-miqizy5011] {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1.25rem;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
}

[data-theme="dark"] .guide-tips[b-miqizy5011] {
    background: linear-gradient(135deg, #78350f, #92400e);
    border-left-color: #fbbf24;
}

.guide-tips h6[b-miqizy5011] {
    margin: 0 0 0.75rem 0;
    font-weight: 700;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .guide-tips h6[b-miqizy5011] {
    color: #fbbf24;
}

.guide-tips h6 i[b-miqizy5011] {
    color: #f59e0b;
}

[data-theme="dark"] .guide-tips h6 i[b-miqizy5011] {
    color: #fbbf24;
}

.guide-tips ul[b-miqizy5011] {
    margin: 0;
    padding-left: 1.5rem;
}

.guide-tips li[b-miqizy5011] {
    color: #78350f;
    font-size: 0.9rem;
    line-height: 1.8;
}

[data-theme="dark"] .guide-tips li[b-miqizy5011] {
    color: #fde68a;
}

.guide-tips strong[b-miqizy5011] {
    color: #92400e;
    font-weight: 600;
}

[data-theme="dark"] .guide-tips strong[b-miqizy5011] {
    color: #fbbf24;
}

/* Modal footer button */
.modal-footer .btn-primary[b-miqizy5011] {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.modal-footer .btn-primary:hover[b-miqizy5011] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

/* Mobile responsiveness for guide modal */
@media (max-width: 768px) {
    .guide-modal[b-miqizy5011] {
        max-width: 95%;
        max-height: 90vh;
    }

    .guide-step[b-miqizy5011] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .step-number[b-miqizy5011] {
        align-self: flex-start;
    }
}
/* /Apps/DnsLookup/Pages/DnsLookupPage.razor.rz.scp.css */
/* ===================================
   PAGE HEADER
   =================================== */

.page-header[b-jplkuz45jt] {
    background: linear-gradient(135deg, #2d3748, #4a5568);
    color: white;
    padding: 1.5rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .page-header[b-jplkuz45jt] {
    background: linear-gradient(135deg, #1a202c, #2d3748);
}

.header-content[b-jplkuz45jt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.title-section[b-jplkuz45jt] {
    flex: 1;
}

.page-title[b-jplkuz45jt] {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-title i[b-jplkuz45jt] {
    color: #90cdf4;
    font-size: 1.75rem;
}

.page-subtitle[b-jplkuz45jt] {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    color: #e2e8f0;
}

/* ===================================
   DNS LOOKUP CONTAINER
   =================================== */

.dns-lookup-container[b-jplkuz45jt] {
    padding: 1rem;
    height: calc(100vh - 80px);
    overflow: hidden;
}

.dns-lookup-header[b-jplkuz45jt] {
    background: #2d3748;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.dns-lookup-header h3[b-jplkuz45jt] {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.dns-lookup-header p[b-jplkuz45jt] {
    margin: 0.3rem 0 0 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.dns-lookup-content[b-jplkuz45jt] {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 1rem;
    height: calc(100% - 100px);
}

.dns-lookup-left-panel[b-jplkuz45jt] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    overflow-y: auto;
}

.dns-lookup-right-panel[b-jplkuz45jt] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Tabs */
.nav-tabs[b-jplkuz45jt] {
    border-bottom: 2px solid #e2e8f0;
    flex-wrap: wrap;
}

.nav-tabs .nav-link[b-jplkuz45jt] {
    border: none;
    color: #64748b;
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.nav-tabs .nav-link:hover[b-jplkuz45jt] {
    color: #4f46e5;
    border-bottom-color: #4f46e5;
}

.nav-tabs .nav-link.active[b-jplkuz45jt] {
    color: #4f46e5;
    border-bottom-color: #4f46e5;
    background: transparent;
}

/* Tool Section */
.tool-section[b-jplkuz45jt] {
    margin-top: 1rem;
}

.form-label[b-jplkuz45jt] {
    font-size: 0.85rem;
    font-weight: 500;
    color: #334155;
    margin-bottom: 0.4rem;
}

.form-control[b-jplkuz45jt],
.form-select[b-jplkuz45jt] {
    font-size: 0.85rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 0.5rem;
}

.form-control:focus[b-jplkuz45jt],
.form-select:focus[b-jplkuz45jt] {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Buttons */
.btn-primary[b-jplkuz45jt] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
}

.btn-primary:hover[b-jplkuz45jt] {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.btn-primary:disabled[b-jplkuz45jt] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Results */
.results-header[b-jplkuz45jt] {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-header h5[b-jplkuz45jt] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.results-actions[b-jplkuz45jt] {
    display: flex;
    gap: 0.5rem;
}

.results-actions .btn[b-jplkuz45jt] {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
}

.results-content[b-jplkuz45jt] {
    padding: 1rem;
    overflow-y: auto;
    flex: 1;
}

.no-results[b-jplkuz45jt] {
    text-align: center;
    padding: 3rem 1rem;
    color: #94a3b8;
}

.no-results i[b-jplkuz45jt] {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results p[b-jplkuz45jt] {
    margin: 0;
    font-size: 0.95rem;
}

/* Result Cards */
.result-card[b-jplkuz45jt] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1rem;
}

.result-card.success[b-jplkuz45jt] {
    border-left: 4px solid #10b981;
}

.result-card.error[b-jplkuz45jt] {
    border-left: 4px solid #ef4444;
}

.result-card.warning[b-jplkuz45jt] {
    border-left: 4px solid #f59e0b;
}

.result-card-header[b-jplkuz45jt] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.domain-name[b-jplkuz45jt] {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.record-type-badge[b-jplkuz45jt],
.provider-badge[b-jplkuz45jt],
.type-badge[b-jplkuz45jt],
.availability-badge[b-jplkuz45jt] {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 500;
}

.record-type-badge[b-jplkuz45jt] {
    background: #dbeafe;
    color: #1e40af;
}

.provider-badge[b-jplkuz45jt] {
    background: #fef3c7;
    color: #92400e;
}

.type-badge[b-jplkuz45jt] {
    background: #e0e7ff;
    color: #4338ca;
}

.availability-badge.available[b-jplkuz45jt] {
    background: #d1fae5;
    color: #065f46;
}

.availability-badge.registered[b-jplkuz45jt] {
    background: #fee2e2;
    color: #991b1b;
}

.query-time[b-jplkuz45jt] {
    font-size: 0.75rem;
    color: #64748b;
    margin-left: auto;
}

/* Records Table */
.records-table-wrapper[b-jplkuz45jt] {
    overflow-x: auto;
}

.records-table[b-jplkuz45jt] {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.records-table thead[b-jplkuz45jt] {
    background: #f8fafc;
}

.records-table th[b-jplkuz45jt] {
    font-weight: 600;
    color: #475569;
    border-bottom: 2px solid #e2e8f0;
    padding: 0.6rem;
}

.records-table td[b-jplkuz45jt] {
    padding: 0.6rem;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
}

.data-cell[b-jplkuz45jt] {
    word-break: break-all;
    max-width: 400px;
}

/* Error Message */
.error-message[b-jplkuz45jt] {
    padding: 0.8rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    color: #991b1b;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-message i[b-jplkuz45jt] {
    font-size: 1.1rem;
}

/* Hostnames List */
.hostnames-list h6[b-jplkuz45jt] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
}

.hostname-item[b-jplkuz45jt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

/* WHOIS Info */
.whois-info[b-jplkuz45jt] {
    font-size: 0.85rem;
}

.info-row[b-jplkuz45jt] {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.info-row:last-child[b-jplkuz45jt] {
    border-bottom: none;
}

.info-row strong[b-jplkuz45jt] {
    color: #475569;
    display: inline-block;
    min-width: 120px;
}

.nameservers-list[b-jplkuz45jt] {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
}

.nameservers-list li[b-jplkuz45jt] {
    padding: 0.2rem 0;
}

/* Availability Message */
.availability-message[b-jplkuz45jt] {
    padding: 0.8rem;
    background: #f8fafc;
    border-radius: 6px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.availability-message i[b-jplkuz45jt] {
    font-size: 1.1rem;
}

/* Toast Notification */
.toast-notification[b-jplkuz45jt] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: slideIn-b-jplkuz45jt 0.3s ease-out;
}

@keyframes slideIn-b-jplkuz45jt {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-notification.success[b-jplkuz45jt] {
    background: #10b981;
}

.toast-notification.error[b-jplkuz45jt] {
    background: #ef4444;
}

.toast-notification.warning[b-jplkuz45jt] {
    background: #f59e0b;
}

.toast-notification i[b-jplkuz45jt] {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dns-lookup-content[b-jplkuz45jt] {
        grid-template-columns: 350px 1fr;
    }
}

@media (max-width: 768px) {
    .dns-lookup-container[b-jplkuz45jt] {
        height: auto;
        padding: 0.5rem;
    }

    .dns-lookup-content[b-jplkuz45jt] {
        grid-template-columns: 1fr;
        height: auto;
    }

    .dns-lookup-left-panel[b-jplkuz45jt],
    .dns-lookup-right-panel[b-jplkuz45jt] {
        height: auto;
    }

    .results-content[b-jplkuz45jt] {
        max-height: 600px;
    }

    .nav-tabs .nav-link[b-jplkuz45jt] {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }

    .data-cell[b-jplkuz45jt] {
        max-width: 200px;
    }

    .toast-notification[b-jplkuz45jt] {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
}

@media (max-width: 577px) {
    .dns-lookup-header h3[b-jplkuz45jt] {
        font-size: 1.1rem;
    }

    .dns-lookup-header p[b-jplkuz45jt] {
        font-size: 0.8rem;
    }

    .results-header[b-jplkuz45jt] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .result-card-header[b-jplkuz45jt] {
        flex-direction: column;
        align-items: flex-start;
    }

    .query-time[b-jplkuz45jt] {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .records-table[b-jplkuz45jt] {
        font-size: 0.75rem;
    }

    .records-table th[b-jplkuz45jt],
    .records-table td[b-jplkuz45jt] {
        padding: 0.4rem;
    }
}

@media (max-width: 360px) {
    .dns-lookup-header[b-jplkuz45jt] {
        padding: 0.8rem 1rem;
    }

    .nav-tabs .nav-link[b-jplkuz45jt] {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
    }
}

/* ===================================
   QUICK GUIDE MODAL
   =================================== */

.modal-overlay[b-jplkuz45jt] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn-b-jplkuz45jt 0.2s ease;
}

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

@keyframes scaleIn-b-jplkuz45jt {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-container.guide-modal[b-jplkuz45jt] {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn-b-jplkuz45jt 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .modal-container.guide-modal[b-jplkuz45jt] {
    background: #2d2d2d;
}

.guide-modal .modal-header[b-jplkuz45jt] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-modal .modal-header h5[b-jplkuz45jt] {
    margin: 0;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guide-modal .btn-close[b-jplkuz45jt] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guide-modal .btn-close:hover[b-jplkuz45jt] {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.guide-modal .modal-body[b-jplkuz45jt] {
    padding: 2rem;
    max-height: calc(85vh - 180px);
    overflow-y: auto;
}

.guide-body[b-jplkuz45jt] {
    padding: 0;
}

.guide-intro[b-jplkuz45jt] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.guide-intro p[b-jplkuz45jt] {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.guide-section[b-jplkuz45jt] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.guide-step[b-jplkuz45jt] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid #6366f1;
    transition: all 0.2s ease;
}

[data-theme="dark"] .guide-step[b-jplkuz45jt] {
    background: #2d2d2d;
    border-left-color: #8b5cf6;
}

.guide-step:hover[b-jplkuz45jt] {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number[b-jplkuz45jt] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.step-content[b-jplkuz45jt] {
    flex: 1;
}

.step-content h6[b-jplkuz45jt] {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .step-content h6[b-jplkuz45jt] {
    color: #e5e7eb;
}

.step-content h6 i[b-jplkuz45jt] {
    font-size: 1.1rem;
}

.step-content p[b-jplkuz45jt] {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

[data-theme="dark"] .step-content p[b-jplkuz45jt] {
    color: #9ca3af;
}

.guide-tips[b-jplkuz45jt] {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1.25rem;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
}

[data-theme="dark"] .guide-tips[b-jplkuz45jt] {
    background: linear-gradient(135deg, #78350f, #92400e);
    border-left-color: #fbbf24;
}

.guide-tips h6[b-jplkuz45jt] {
    margin: 0 0 0.75rem 0;
    font-weight: 700;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .guide-tips h6[b-jplkuz45jt] {
    color: #fbbf24;
}

.guide-tips h6 i[b-jplkuz45jt] {
    color: #f59e0b;
}

[data-theme="dark"] .guide-tips h6 i[b-jplkuz45jt] {
    color: #fbbf24;
}

.guide-tips ul[b-jplkuz45jt] {
    margin: 0;
    padding-left: 1.5rem;
}

.guide-tips li[b-jplkuz45jt] {
    color: #78350f;
    font-size: 0.9rem;
    line-height: 1.8;
}

[data-theme="dark"] .guide-tips li[b-jplkuz45jt] {
    color: #fde68a;
}

.guide-tips strong[b-jplkuz45jt] {
    color: #92400e;
    font-weight: 600;
}

[data-theme="dark"] .guide-tips strong[b-jplkuz45jt] {
    color: #fbbf24;
}

.guide-modal .modal-footer[b-jplkuz45jt] {
    padding: 1.5rem 2rem;
    background: #f9fafb;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    border-top: 2px solid #e5e7eb;
}

[data-theme="dark"] .guide-modal .modal-footer[b-jplkuz45jt] {
    background: #1a1a1a;
    border-top-color: #444;
}

.guide-modal .btn-secondary[b-jplkuz45jt] {
    padding: 0.75rem 1.5rem;
    border: 2px solid #6366f1;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #6366f1;
}

[data-theme="dark"] .guide-modal .btn-secondary[b-jplkuz45jt] {
    background: #2d2d2d;
    color: #818cf8;
    border-color: #818cf8;
}

.guide-modal .btn-secondary:hover[b-jplkuz45jt] {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

[data-theme="dark"] .guide-modal .btn-secondary:hover[b-jplkuz45jt] {
    background: #818cf8;
    color: white;
}

/* Text color helpers */
.text-success[b-jplkuz45jt] {
    color: #10b981;
}

.text-primary[b-jplkuz45jt] {
    color: #3b82f6;
}

.text-info[b-jplkuz45jt] {
    color: #06b6d4;
}

.text-warning[b-jplkuz45jt] {
    color: #f59e0b;
}

/* Mobile responsiveness for guide */
@media (max-width: 768px) {
    .guide-modal .modal-container[b-jplkuz45jt] {
        max-width: 95%;
        max-height: 90vh;
    }

    .guide-step[b-jplkuz45jt] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .step-number[b-jplkuz45jt] {
        align-self: flex-start;
    }
}
/* /Apps/GuidGenerator/Pages/GuidGeneratorPage.razor.rz.scp.css */
/* GUID Generator - Scoped Styles */

/* Page Header */
.page-header[b-jv12fjoamv] {
    background: white;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-content[b-jv12fjoamv] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

.header-left[b-jv12fjoamv] {
    flex: 1;
}

.page-title[b-jv12fjoamv] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-title i[b-jv12fjoamv] {
    color: #6366f1;
    font-size: 1.5rem;
}

.header-left p[b-jv12fjoamv] {
    color: #6b7280;
    margin: 0;
    font-size: 0.95rem;
}

[data-theme="dark"] .page-header[b-jv12fjoamv] {
    background: #1a1a1a;
    border-bottom-color: #333;
}

[data-theme="dark"] .page-title[b-jv12fjoamv] {
    color: #e5e7eb;
}

[data-theme="dark"] .header-left p[b-jv12fjoamv] {
    color: #9ca3af;
}

.guid-tool-root[b-jv12fjoamv] {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    height: calc(100vh - 50px);
    overflow: hidden;
    background-color: #f8f9fa;
}

/* Sidebar Configuration */
.guid-tool-sidebar[b-jv12fjoamv] {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: calc(100vh - 50px);
    overflow-y: auto;
    overflow-x: hidden;
    background: white;
    border-right: 2px solid #e9ecef;
}

.guid-tool-sidebar[b-jv12fjoamv]::-webkit-scrollbar {
    width: 10px;
}

.guid-tool-sidebar[b-jv12fjoamv]::-webkit-scrollbar-track {
    background: #f1f3f5;
}

.guid-tool-sidebar[b-jv12fjoamv]::-webkit-scrollbar-thumb {
    background: #4a5568;
    border-radius: 5px;
}

.guid-tool-sidebar[b-jv12fjoamv]::-webkit-scrollbar-thumb:hover {
    background: #2d3748;
}

.config-card[b-jv12fjoamv] {
    background: white;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transition: none;
    height: auto;
    flex-shrink: 0;
}

.config-card:hover[b-jv12fjoamv] {
    box-shadow: none;
    transform: none;
}

.config-card .card-body[b-jv12fjoamv] {
    padding: 1.5rem;
}

/* Tabs */
.nav-tabs[b-jv12fjoamv] {
    border-bottom: 2px solid #e9ecef;
    display: flex;
    gap: 0.5rem;
}

.nav-tabs .nav-item[b-jv12fjoamv] {
    flex: 1;
}

.nav-tabs .nav-link[b-jv12fjoamv] {
    width: 100%;
    border: none;
    border-radius: 8px 8px 0 0;
    padding: 0.875rem 1rem;
    font-weight: 600;
    color: #6c757d;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
}

.nav-tabs .nav-link:hover[b-jv12fjoamv] {
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.nav-tabs .nav-link.active[b-jv12fjoamv] {
    color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-bottom: 3px solid #667eea;
}

/* Format Section */
.format-section[b-jv12fjoamv] {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f1f3f5;
}

.format-section h6[b-jv12fjoamv] {
    font-weight: 700;
    color: #495057;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.format-options[b-jv12fjoamv] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.form-check[b-jv12fjoamv] {
    display: flex;
    align-items: center;
    padding: 0.625rem 0.875rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.form-check:hover[b-jv12fjoamv] {
    background: rgba(102, 126, 234, 0.05);
}

.form-check-input[b-jv12fjoamv] {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    cursor: pointer;
    border: 2px solid #ced4da;
    transition: all 0.2s ease;
}

.form-check-input:checked[b-jv12fjoamv] {
    background-color: #667eea;
    border-color: #667eea;
}

.form-check-input:focus[b-jv12fjoamv] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-check-label[b-jv12fjoamv] {
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    user-select: none;
    flex: 1;
}

.format-options-secondary[b-jv12fjoamv] {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.format-options-secondary .form-check[b-jv12fjoamv] {
    padding: 0.5rem;
}

/* Quick Generate Buttons */
.quick-generate-buttons[b-jv12fjoamv] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.quick-generate-buttons .btn[b-jv12fjoamv] {
    padding: 0.625rem 0.5rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #dee2e6;
    background: white;
    color: #495057;
    transition: all 0.2s ease;
}

.quick-generate-buttons .btn:hover[b-jv12fjoamv] {
    border-color: #667eea;
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

/* Main Result Area */
.guid-tool-main[b-jv12fjoamv] {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.result-card[b-jv12fjoamv] {
    background: white;
    border-radius: 0;
    box-shadow: none;
    border: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.result-body[b-jv12fjoamv] {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    overflow-x: hidden;
}

.result-body[b-jv12fjoamv]::-webkit-scrollbar {
    width: 10px;
}

.result-body[b-jv12fjoamv]::-webkit-scrollbar-track {
    background: #f1f3f5;
}

.result-body[b-jv12fjoamv]::-webkit-scrollbar-thumb {
    background: #4a5568;
    border-radius: 5px;
}

.result-body[b-jv12fjoamv]::-webkit-scrollbar-thumb:hover {
    background: #2d3748;
}

/* Preview Section */
.preview-code[b-jv12fjoamv] {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.95rem;
    background: #4a5568;
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-top: 0.5rem;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(74, 85, 104, 0.25);
    letter-spacing: 0.3px;
}

/* GUID List Container */
.guid-list-container[b-jv12fjoamv] {
    margin-top: 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.guid-list-header[b-jv12fjoamv] {
    display: grid;
    grid-template-columns: 70px 1fr 120px 100px;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #4a5568;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.guid-list[b-jv12fjoamv] {
    overflow-y: auto;
    overflow-x: hidden;
    background: white;
    flex: 1;
    min-height: 0;
}

.guid-list[b-jv12fjoamv]::-webkit-scrollbar {
    width: 10px;
}

.guid-list[b-jv12fjoamv]::-webkit-scrollbar-track {
    background: #f1f3f5;
}

.guid-list[b-jv12fjoamv]::-webkit-scrollbar-thumb {
    background: #4a5568;
    border-radius: 5px;
}

.guid-list[b-jv12fjoamv]::-webkit-scrollbar-thumb:hover {
    background: #2d3748;
}

.guid-row[b-jv12fjoamv] {
    display: grid;
    grid-template-columns: 70px 1fr 120px 100px;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.2s ease;
    align-items: center;
}

.guid-row:last-child[b-jv12fjoamv] {
    border-bottom: none;
}

.guid-row:hover[b-jv12fjoamv] {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.guid-row.copied[b-jv12fjoamv] {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.08) 0%, rgba(34, 193, 195, 0.08) 100%);
}

.guid-row .index[b-jv12fjoamv] {
    font-weight: 700;
    color: #6c757d;
    font-size: 0.875rem;
}

.guid-row .value[b-jv12fjoamv] {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    color: #495057;
    font-weight: 500;
    word-break: break-all;
}

.guid-row .status[b-jv12fjoamv] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.guid-row .action[b-jv12fjoamv] {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Empty State */
.empty-state[b-jv12fjoamv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    color: #6c757d;
    min-height: 400px;
}

.empty-state i[b-jv12fjoamv] {
    color: #dee2e6;
    margin-bottom: 1rem;
}

.empty-state div[b-jv12fjoamv] {
    font-size: 1.125rem;
    font-weight: 500;
}

/* Badge */
.badge[b-jv12fjoamv] {
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bg-success[b-jv12fjoamv] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

/* Spinner */
.spinner-border[b-jv12fjoamv] {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
    animation: spinner-border-b-jv12fjoamv 0.75s linear infinite;
}

@keyframes spinner-border-b-jv12fjoamv {
    to {
        transform: rotate(360deg);
    }
}

.spinner-border-sm[b-jv12fjoamv] {
    width: 0.875rem;
    height: 0.875rem;
    border-width: 0.12em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .guid-tool-root[b-jv12fjoamv] {
        grid-template-columns: 320px 1fr;
        gap: 0;
        padding: 0;
    }

    .config-card[b-jv12fjoamv] {
        position: static;
    }

    .guid-list-header[b-jv12fjoamv],
    .guid-row[b-jv12fjoamv] {
        grid-template-columns: 50px 1fr 100px 80px;
        gap: 0.75rem;
        padding: 0.875rem 1rem;
    }
}

@media (max-width: 768px) {
    .guid-tool-root[b-jv12fjoamv] {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        min-height: 100vh;
        height: auto;
        overflow-y: auto;
    }

    .guid-tool-sidebar[b-jv12fjoamv] {
        height: auto;
        max-height: none;
        border-right: none;
        border-bottom: 2px solid #e9ecef;
        overflow: visible;
    }

    .guid-tool-main[b-jv12fjoamv] {
        height: auto;
        flex: 1;
        overflow: hidden;
    }

    .config-card .card-body[b-jv12fjoamv] {
        padding: 1rem;
    }

    .result-body[b-jv12fjoamv] {
        padding: 1rem;
    }

    .guid-list-header[b-jv12fjoamv] {
        display: none;
    }

    .guid-row[b-jv12fjoamv] {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem;
        border-radius: 0;
        margin-bottom: 0;
        background: white;
    }

    .guid-row .index[b-jv12fjoamv]::before {
        content: '#';
        margin-right: 0.25rem;
    }

    .guid-row .value[b-jv12fjoamv] {
        font-size: 0.8rem;
        padding: 0.5rem;
        background: #f8f9fa;
        border-radius: 6px;
        word-break: break-all;
    }

    .guid-row .status[b-jv12fjoamv],
    .guid-row .action[b-jv12fjoamv] {
        justify-content: flex-start;
    }

    .preview-code[b-jv12fjoamv] {
        font-size: 0.85rem;
        padding: 0.875rem 1rem;
    }
}

@media (max-width: 576px) {
    .guid-list-header[b-jv12fjoamv],
    .guid-row[b-jv12fjoamv] {
        padding: 0.75rem 0.875rem;
    }

    .guid-row .value[b-jv12fjoamv] {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .quick-generate-buttons[b-jv12fjoamv] {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }

    .quick-generate-buttons .btn[b-jv12fjoamv] {
        padding: 0.5rem 0.4rem;
        font-size: 0.85rem;
    }

    .nav-tabs .nav-link[b-jv12fjoamv] {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .config-card .card-body[b-jv12fjoamv] {
        padding: 0.875rem;
    }

    .result-body[b-jv12fjoamv] {
        padding: 0.875rem;
    }

    .preview-code[b-jv12fjoamv] {
        font-size: 0.8rem;
        padding: 0.75rem 0.875rem;
    }

    .empty-state[b-jv12fjoamv] {
        padding: 3rem 1.5rem;
        min-height: 300px;
    }

    .empty-state div[b-jv12fjoamv] {
        font-size: 1rem;
    }
}

/* ===================================
   QUICK GUIDE MODAL
   =================================== */

.modal-overlay[b-jv12fjoamv] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn-b-jv12fjoamv 0.2s ease;
}

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

@keyframes scaleIn-b-jv12fjoamv {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-container.guide-modal[b-jv12fjoamv] {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn-b-jv12fjoamv 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .modal-container.guide-modal[b-jv12fjoamv] {
    background: #2d2d2d;
}

.guide-modal .modal-header[b-jv12fjoamv] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-modal .modal-header h5[b-jv12fjoamv] {
    margin: 0;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guide-modal .btn-close[b-jv12fjoamv] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guide-modal .btn-close:hover[b-jv12fjoamv] {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.guide-modal .modal-body[b-jv12fjoamv] {
    padding: 2rem;
    max-height: calc(85vh - 180px);
    overflow-y: auto;
}

.guide-body[b-jv12fjoamv] {
    padding: 0;
}

.guide-intro[b-jv12fjoamv] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.guide-intro p[b-jv12fjoamv] {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.guide-section[b-jv12fjoamv] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.guide-step[b-jv12fjoamv] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid #6366f1;
    transition: all 0.2s ease;
}

[data-theme="dark"] .guide-step[b-jv12fjoamv] {
    background: #2d2d2d;
    border-left-color: #8b5cf6;
}

.guide-step:hover[b-jv12fjoamv] {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number[b-jv12fjoamv] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.step-content[b-jv12fjoamv] {
    flex: 1;
}

.step-content h6[b-jv12fjoamv] {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .step-content h6[b-jv12fjoamv] {
    color: #e5e7eb;
}

.step-content h6 i[b-jv12fjoamv] {
    font-size: 1.1rem;
}

.step-content p[b-jv12fjoamv] {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

[data-theme="dark"] .step-content p[b-jv12fjoamv] {
    color: #9ca3af;
}

.guide-tips[b-jv12fjoamv] {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1.25rem;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
}

[data-theme="dark"] .guide-tips[b-jv12fjoamv] {
    background: linear-gradient(135deg, #78350f, #92400e);
    border-left-color: #fbbf24;
}

.guide-tips h6[b-jv12fjoamv] {
    margin: 0 0 0.75rem 0;
    font-weight: 700;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .guide-tips h6[b-jv12fjoamv] {
    color: #fbbf24;
}

.guide-tips h6 i[b-jv12fjoamv] {
    color: #f59e0b;
}

[data-theme="dark"] .guide-tips h6 i[b-jv12fjoamv] {
    color: #fbbf24;
}

.guide-tips ul[b-jv12fjoamv] {
    margin: 0;
    padding-left: 1.5rem;
}

.guide-tips li[b-jv12fjoamv] {
    color: #78350f;
    font-size: 0.9rem;
    line-height: 1.8;
}

[data-theme="dark"] .guide-tips li[b-jv12fjoamv] {
    color: #fde68a;
}

.guide-tips strong[b-jv12fjoamv] {
    color: #92400e;
    font-weight: 600;
}

[data-theme="dark"] .guide-tips strong[b-jv12fjoamv] {
    color: #fbbf24;
}

.guide-modal .modal-footer[b-jv12fjoamv] {
    padding: 1.5rem 2rem;
    background: #f9fafb;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    border-top: 2px solid #e5e7eb;
}

[data-theme="dark"] .guide-modal .modal-footer[b-jv12fjoamv] {
    background: #1a1a1a;
    border-top-color: #444;
}

.guide-modal .btn-secondary[b-jv12fjoamv] {
    padding: 0.75rem 1.5rem;
    border: 2px solid #6366f1;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #6366f1;
}

[data-theme="dark"] .guide-modal .btn-secondary[b-jv12fjoamv] {
    background: #2d2d2d;
    color: #818cf8;
    border-color: #818cf8;
}

.guide-modal .btn-secondary:hover[b-jv12fjoamv] {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

[data-theme="dark"] .guide-modal .btn-secondary:hover[b-jv12fjoamv] {
    background: #818cf8;
    color: white;
}

/* Text color helpers */
.text-success[b-jv12fjoamv] {
    color: #10b981;
}

.text-primary[b-jv12fjoamv] {
    color: #3b82f6;
}

.text-info[b-jv12fjoamv] {
    color: #06b6d4;
}

.text-warning[b-jv12fjoamv] {
    color: #f59e0b;
}

/* Mobile responsiveness for guide */
@media (max-width: 768px) {
    .guide-modal .modal-container[b-jv12fjoamv] {
        max-width: 95%;
        max-height: 90vh;
    }

    .guide-step[b-jv12fjoamv] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .step-number[b-jv12fjoamv] {
        align-self: flex-start;
    }
}
/* /Apps/HttpRequestTester/Pages/HttpRequestTesterPage.razor.rz.scp.css */
/* ===================================
   PAGE HEADER
   =================================== */

.page-header[b-nz13i2gjlv] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.5rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

[data-theme="dark"] .page-header[b-nz13i2gjlv] {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
}

.header-content[b-nz13i2gjlv] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.title-section[b-nz13i2gjlv] {
    flex: 1;
}

.page-title[b-nz13i2gjlv] {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-title i[b-nz13i2gjlv] {
    font-size: 1.75rem;
}

.page-subtitle[b-nz13i2gjlv] {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.95;
    color: white;
}

/* ===================================
   HTTP TESTER CONTAINER
   =================================== */

.http-tester-container[b-nz13i2gjlv] {
    padding: 1.5rem;
    max-width: 1600px;
    margin: 0 auto;
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
}

.http-tester-header[b-nz13i2gjlv] {
    margin-bottom: 1.5rem;
}

.http-tester-header h1[b-nz13i2gjlv] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.subtitle[b-nz13i2gjlv] {
    color: var(--text-muted);
    margin-bottom: 0;
}

.http-tester-content[b-nz13i2gjlv] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    flex: 1;
    overflow: hidden;
}

/* Panels */
.request-panel[b-nz13i2gjlv],
.response-panel[b-nz13i2gjlv] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.panel-section[b-nz13i2gjlv] {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.section-header[b-nz13i2gjlv] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.section-header h3[b-nz13i2gjlv] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

/* URL Input Group */
.url-input-group[b-nz13i2gjlv] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.method-select[b-nz13i2gjlv] {
    flex: 0 0 120px;
    font-weight: 600;
}

.url-input[b-nz13i2gjlv] {
    flex: 1;
}

.send-btn[b-nz13i2gjlv] {
    flex: 0 0 100px;
    font-weight: 600;
}

/* Tabs */
.nav-tabs[b-nz13i2gjlv] {
    border-bottom: 2px solid var(--border-color);
}

.nav-tabs .nav-link[b-nz13i2gjlv] {
    border: none;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    cursor: pointer;
    background: transparent;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.nav-tabs .nav-link:hover[b-nz13i2gjlv] {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color-light);
}

.nav-tabs .nav-link.active[b-nz13i2gjlv] {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}

.tab-content[b-nz13i2gjlv] {
    margin-top: 1rem;
}

.tab-pane-content[b-nz13i2gjlv] {
    animation: fadeIn-b-nz13i2gjlv 0.2s;
}

/* Key-Value Rows */
.key-value-row[b-nz13i2gjlv] {
    display: grid;
    grid-template-columns: auto 1fr 1fr auto;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    align-items: center;
}

.key-value-row input[type="checkbox"][b-nz13i2gjlv] {
    margin: 0;
}

/* Response Status */
.response-status[b-nz13i2gjlv] {
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.response-status.success[b-nz13i2gjlv] {
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

.response-status.redirect[b-nz13i2gjlv] {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
}

.response-status.client-error[b-nz13i2gjlv] {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
}

.response-status.server-error[b-nz13i2gjlv] {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}

.status-info[b-nz13i2gjlv] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.status-code[b-nz13i2gjlv] {
    font-size: 1.5rem;
    font-weight: 700;
}

.status-text[b-nz13i2gjlv] {
    font-size: 1rem;
    font-weight: 600;
}

.response-meta[b-nz13i2gjlv] {
    display: flex;
    gap: 1rem;
}

.meta-item[b-nz13i2gjlv] {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Response Body */
.response-body[b-nz13i2gjlv],
.response-headers[b-nz13i2gjlv] {
    max-height: 500px;
    overflow-y: auto;
}

.response-code[b-nz13i2gjlv] {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1rem;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    overflow-x: auto;
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Response Headers */
.header-item[b-nz13i2gjlv] {
    padding: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
}

.header-key[b-nz13i2gjlv] {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 150px;
}

.header-value[b-nz13i2gjlv] {
    color: var(--text-color);
    word-break: break-all;
}

/* Empty State */
.empty-state[b-nz13i2gjlv] {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.empty-icon[b-nz13i2gjlv] {
    font-size: 4rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.empty-state h3[b-nz13i2gjlv] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* History List */
.history-list[b-nz13i2gjlv] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 400px;
    overflow-y: auto;
}

.history-item[b-nz13i2gjlv] {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.history-item:hover[b-nz13i2gjlv] {
    background: var(--bg-hover);
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.history-method[b-nz13i2gjlv] {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    min-width: 60px;
}

.history-method.get[b-nz13i2gjlv] { background: #28a745; color: white; }
.history-method.post[b-nz13i2gjlv] { background: #ffc107; color: #000; }
.history-method.put[b-nz13i2gjlv] { background: #17a2b8; color: white; }
.history-method.patch[b-nz13i2gjlv] { background: #6c757d; color: white; }
.history-method.delete[b-nz13i2gjlv] { background: #dc3545; color: white; }
.history-method.head[b-nz13i2gjlv] { background: #6610f2; color: white; }
.history-method.options[b-nz13i2gjlv] { background: #fd7e14; color: white; }

.history-details[b-nz13i2gjlv] {
    flex: 1;
    min-width: 0;
}

.history-url[b-nz13i2gjlv] {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-color);
}

.history-meta[b-nz13i2gjlv] {
    display: flex;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.history-status[b-nz13i2gjlv] {
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.75rem;
}

.history-status.status-success[b-nz13i2gjlv] {
    background: #d4edda;
    color: #155724;
}

.history-status.status-client-error[b-nz13i2gjlv],
.history-status.status-server-error[b-nz13i2gjlv] {
    background: #f8d7da;
    color: #721c24;
}

/* Code Textarea */
.code-textarea[b-nz13i2gjlv] {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Persisted Data Indicator */
.persisted-data[b-nz13i2gjlv] {
    background-color: #f0f4ff;
    border-left: 3px solid #4f46e5;
}

[data-theme="dark"] .persisted-data[b-nz13i2gjlv] {
    background-color: #1a1f3a;
    border-left: 3px solid #6366f1;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .http-tester-container[b-nz13i2gjlv] {
        height: auto;
        min-height: 100vh;
        padding: 1rem;
    }

    .http-tester-content[b-nz13i2gjlv] {
        grid-template-columns: 1fr;
        overflow-y: visible;
    }

    .request-panel[b-nz13i2gjlv],
    .response-panel[b-nz13i2gjlv] {
        overflow-y: visible;
    }

    .url-input-group[b-nz13i2gjlv] {
        flex-direction: column;
    }

    .method-select[b-nz13i2gjlv],
    .send-btn[b-nz13i2gjlv] {
        flex: 1 1 auto;
    }

    .key-value-row[b-nz13i2gjlv] {
        grid-template-columns: auto 1fr;
        gap: 0.25rem;
    }

    .key-value-row input:nth-child(3)[b-nz13i2gjlv] {
        grid-column: 2 / 3;
    }

    .key-value-row button[b-nz13i2gjlv] {
        grid-column: 2 / 3;
        justify-self: end;
    }

    .response-status[b-nz13i2gjlv] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .response-body[b-nz13i2gjlv],
    .response-headers[b-nz13i2gjlv] {
        max-height: 300px;
    }

    .nav-tabs .nav-link[b-nz13i2gjlv] {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* ===================================
   QUICK GUIDE MODAL
   =================================== */

.modal-overlay[b-nz13i2gjlv] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn-b-nz13i2gjlv 0.2s ease;
}

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

@keyframes scaleIn-b-nz13i2gjlv {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-container.guide-modal[b-nz13i2gjlv] {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn-b-nz13i2gjlv 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .modal-container.guide-modal[b-nz13i2gjlv] {
    background: #2d2d2d;
}

.guide-modal .modal-header[b-nz13i2gjlv] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-modal .modal-header h5[b-nz13i2gjlv] {
    margin: 0;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guide-modal .btn-close[b-nz13i2gjlv] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guide-modal .btn-close:hover[b-nz13i2gjlv] {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.guide-modal .modal-body[b-nz13i2gjlv] {
    padding: 2rem;
    max-height: calc(85vh - 180px);
    overflow-y: auto;
}

.guide-body[b-nz13i2gjlv] {
    padding: 0;
}

.guide-intro[b-nz13i2gjlv] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.guide-intro p[b-nz13i2gjlv] {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.guide-section[b-nz13i2gjlv] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.guide-step[b-nz13i2gjlv] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid #6366f1;
    transition: all 0.2s ease;
}

[data-theme="dark"] .guide-step[b-nz13i2gjlv] {
    background: #2d2d2d;
    border-left-color: #8b5cf6;
}

.guide-step:hover[b-nz13i2gjlv] {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number[b-nz13i2gjlv] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.step-content[b-nz13i2gjlv] {
    flex: 1;
}

.step-content h6[b-nz13i2gjlv] {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .step-content h6[b-nz13i2gjlv] {
    color: #e5e7eb;
}

.step-content h6 i[b-nz13i2gjlv] {
    font-size: 1.1rem;
}

.step-content p[b-nz13i2gjlv] {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

[data-theme="dark"] .step-content p[b-nz13i2gjlv] {
    color: #9ca3af;
}

.guide-tips[b-nz13i2gjlv] {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1.25rem;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
}

[data-theme="dark"] .guide-tips[b-nz13i2gjlv] {
    background: linear-gradient(135deg, #78350f, #92400e);
    border-left-color: #fbbf24;
}

.guide-tips h6[b-nz13i2gjlv] {
    margin: 0 0 0.75rem 0;
    font-weight: 700;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .guide-tips h6[b-nz13i2gjlv] {
    color: #fbbf24;
}

.guide-tips h6 i[b-nz13i2gjlv] {
    color: #f59e0b;
}

[data-theme="dark"] .guide-tips h6 i[b-nz13i2gjlv] {
    color: #fbbf24;
}

.guide-tips ul[b-nz13i2gjlv] {
    margin: 0;
    padding-left: 1.5rem;
}

.guide-tips li[b-nz13i2gjlv] {
    color: #78350f;
    font-size: 0.9rem;
    line-height: 1.8;
}

[data-theme="dark"] .guide-tips li[b-nz13i2gjlv] {
    color: #fde68a;
}

.guide-tips strong[b-nz13i2gjlv] {
    color: #92400e;
    font-weight: 600;
}

[data-theme="dark"] .guide-tips strong[b-nz13i2gjlv] {
    color: #fbbf24;
}

.guide-modal .modal-footer[b-nz13i2gjlv] {
    padding: 1.5rem 2rem;
    background: #f9fafb;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    border-top: 2px solid #e5e7eb;
}

[data-theme="dark"] .guide-modal .modal-footer[b-nz13i2gjlv] {
    background: #1a1a1a;
    border-top-color: #444;
}

.guide-modal .btn-secondary[b-nz13i2gjlv] {
    padding: 0.75rem 1.5rem;
    border: 2px solid #6366f1;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #6366f1;
}

[data-theme="dark"] .guide-modal .btn-secondary[b-nz13i2gjlv] {
    background: #2d2d2d;
    color: #818cf8;
    border-color: #818cf8;
}

.guide-modal .btn-secondary:hover[b-nz13i2gjlv] {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

[data-theme="dark"] .guide-modal .btn-secondary:hover[b-nz13i2gjlv] {
    background: #818cf8;
    color: white;
}

/* Text color helpers */
.text-success[b-nz13i2gjlv] {
    color: #10b981;
}

.text-primary[b-nz13i2gjlv] {
    color: #3b82f6;
}

.text-info[b-nz13i2gjlv] {
    color: #06b6d4;
}

.text-warning[b-nz13i2gjlv] {
    color: #f59e0b;
}

/* Mobile responsiveness for guide */
@media (max-width: 768px) {
    .guide-modal .modal-container[b-nz13i2gjlv] {
        max-width: 95%;
        max-height: 90vh;
    }

    .guide-step[b-nz13i2gjlv] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .step-number[b-nz13i2gjlv] {
        align-self: flex-start;
    }
}
/* /Apps/IpSubnetCalculator/Pages/IpSubnetCalculatorPage.razor.rz.scp.css */
/* ===================================
   PAGE HEADER
   =================================== */

.page-header[b-infr6tycnt] {
    background: linear-gradient(135deg, #2d3748, #4a5568);
    color: white;
    padding: 1.5rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .page-header[b-infr6tycnt] {
    background: linear-gradient(135deg, #1a202c, #2d3748);
}

.header-content[b-infr6tycnt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.page-title[b-infr6tycnt] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-title i[b-infr6tycnt] {
    color: #81e6d9;
    font-size: 1.75rem;
}

/* ===================================
   IP SUBNET CALCULATOR
   =================================== */

.ip-subnet-calculator[b-infr6tycnt] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f5f7fa;
}

.app-header[b-infr6tycnt] {
    background: #2d3748;
    color: white;
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.app-header h1[b-infr6tycnt] {
    margin: 0;
    font-size: var(--font-2xl);
    font-weight: 600;
}

.calculator-container[b-infr6tycnt] {
    flex: 1;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    overflow: hidden;
}

/* Left Panel */
.left-panel[b-infr6tycnt] {
    background: white;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.panel-content[b-infr6tycnt] {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.section[b-infr6tycnt] {
    margin-bottom: 1.5rem;
}

.section-header[b-infr6tycnt] {
    font-size: var(--font-md);
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.section-header.collapsible[b-infr6tycnt] {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.section-header.collapsible:hover[b-infr6tycnt] {
    color: #667eea;
}

/* Mode Selector */
.mode-selector[b-infr6tycnt] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.mode-selector .btn[b-infr6tycnt] {
    font-size: var(--font-sm);
}

/* CIDR Input */
.cidr-input-group[b-infr6tycnt] {
    display: grid;
    grid-template-columns: 1fr 80px;
    gap: 0.75rem;
    align-items: center;
}

.cidr-number[b-infr6tycnt] {
    font-size: var(--font-base);
}

/* Templates */
.templates-list[b-infr6tycnt] {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    padding: 0.5rem;
}

.template-category[b-infr6tycnt] {
    margin-bottom: 1rem;
}

.category-name[b-infr6tycnt] {
    font-weight: 600;
    font-size: var(--font-sm);
    color: #4a5568;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: #f7fafc;
    border-radius: 0.25rem;
}

.template-btn[b-infr6tycnt] {
    width: 100%;
    text-align: left;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    font-size: var(--font-xs);
    line-height: 1.4;
}

.template-btn strong[b-infr6tycnt] {
    font-size: var(--font-sm);
}

/* Division Controls */
.division-controls label[b-infr6tycnt] {
    font-size: var(--font-sm);
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 0.5rem;
    display: block;
}

/* Right Panel */
.right-panel[b-infr6tycnt] {
    background: white;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.right-panel .panel-content[b-infr6tycnt] {
    flex: 1;
    overflow-y: auto;
}

/* Empty State */
.empty-state[b-infr6tycnt] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #a0aec0;
    padding: 2rem;
    text-align: center;
}

.empty-state i[b-infr6tycnt] {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state h4[b-infr6tycnt] {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.empty-state p[b-infr6tycnt] {
    max-width: 400px;
}

/* Tabs */
.nav-tabs[b-infr6tycnt] {
    border-bottom: 2px solid #e2e8f0;
    padding: 0 1.5rem;
    background: #f7fafc;
}

.nav-tabs .nav-link[b-infr6tycnt] {
    border: none;
    color: #4a5568;
    font-weight: 500;
    padding: 0.75rem 1rem;
    font-size: var(--font-sm);
    cursor: pointer;
}

.nav-tabs .nav-link:hover[b-infr6tycnt] {
    color: #667eea;
    border-color: transparent;
}

.nav-tabs .nav-link.active[b-infr6tycnt] {
    color: #667eea;
    background: transparent;
    border-bottom: 2px solid #667eea;
    margin-bottom: -2px;
}

/* Results Section */
.results-section[b-infr6tycnt] {
    padding: 1.5rem;
}

/* Status Cards */
.status-cards[b-infr6tycnt] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.status-card[b-infr6tycnt] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem;
    border-radius: 0.5rem;
    color: white;
    text-align: center;
}

.status-label[b-infr6tycnt] {
    font-size: var(--font-xs);
    opacity: 0.9;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-value[b-infr6tycnt] {
    font-size: var(--font-lg);
    font-weight: 700;
}

/* Info Section */
.info-section[b-infr6tycnt] {
    background: #f7fafc;
    border-radius: 0.5rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.info-header[b-infr6tycnt] {
    font-size: var(--font-md);
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.info-grid[b-infr6tycnt] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.info-item[b-infr6tycnt] {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1rem;
    align-items: center;
}

.info-item label[b-infr6tycnt] {
    font-size: var(--font-sm);
    font-weight: 500;
    color: #4a5568;
    margin: 0;
}

.info-value[b-infr6tycnt] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-sm);
    font-family: 'Courier New', monospace;
    color: #2d3748;
}

.btn-copy[b-infr6tycnt] {
    background: transparent;
    border: 1px solid #cbd5e0;
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.2s;
    font-size: var(--font-xs);
}

.btn-copy:hover[b-infr6tycnt] {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.btn-copy i[b-infr6tycnt] {
    font-size: var(--font-sm);
}

/* Binary Section */
.binary-section[b-infr6tycnt] {
    background: #f7fafc;
    border-radius: 0.5rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.binary-item[b-infr6tycnt] {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.binary-item:last-child[b-infr6tycnt] {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.binary-item label[b-infr6tycnt] {
    font-size: var(--font-sm);
    font-weight: 500;
    color: #4a5568;
    margin: 0;
}

.binary-item code[b-infr6tycnt] {
    font-size: var(--font-xs);
    background: white;
    padding: 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid #e2e8f0;
    word-break: break-all;
    color: #2d3748;
}

/* IP List */
.ip-list-header[b-infr6tycnt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.ip-list-header h4[b-infr6tycnt] {
    font-size: var(--font-md);
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.ip-list[b-infr6tycnt] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
    max-height: 500px;
    overflow-y: auto;
    padding: 0.5rem;
    background: #f7fafc;
    border-radius: 0.375rem;
}

.ip-list-item[b-infr6tycnt] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid #e2e8f0;
}

.ip-list-item code[b-infr6tycnt] {
    flex: 1;
    font-size: var(--font-xs);
    color: #2d3748;
}

.btn-copy-small[b-infr6tycnt] {
    background: transparent;
    border: 1px solid #cbd5e0;
    border-radius: 0.25rem;
    padding: 0.125rem 0.375rem;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.625rem;
}

.btn-copy-small:hover[b-infr6tycnt] {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

/* Pagination */
.pagination-controls[b-infr6tycnt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 0.375rem;
}

.page-info[b-infr6tycnt] {
    font-size: var(--font-sm);
    font-weight: 500;
    color: #4a5568;
}

/* Subnets Grid */
.subnets-grid[b-infr6tycnt] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    max-height: 600px;
    overflow-y: auto;
}

.subnet-card[b-infr6tycnt] {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
}

.subnet-header[b-infr6tycnt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.subnet-header h5[b-infr6tycnt] {
    font-size: var(--font-md);
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.subnet-details[b-infr6tycnt] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.subnet-item[b-infr6tycnt] {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0.5rem;
    align-items: center;
}

.subnet-item label[b-infr6tycnt] {
    font-size: var(--font-xs);
    font-weight: 500;
    color: #4a5568;
    margin: 0;
}

.subnet-item code[b-infr6tycnt] {
    font-size: var(--font-xs);
    background: white;
    padding: 0.375rem;
    border-radius: 0.25rem;
    border: 1px solid #e2e8f0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .calculator-container[b-infr6tycnt] {
        grid-template-columns: 350px 1fr;
    }

    .status-cards[b-infr6tycnt] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .calculator-container[b-infr6tycnt] {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .left-panel[b-infr6tycnt] {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        max-height: 50vh;
    }

    .status-cards[b-infr6tycnt] {
        grid-template-columns: 1fr;
    }

    .info-item[b-infr6tycnt] {
        grid-template-columns: 1fr;
    }

    .binary-item[b-infr6tycnt] {
        grid-template-columns: 1fr;
    }

    .ip-list[b-infr6tycnt] {
        grid-template-columns: 1fr;
    }

    .subnets-grid[b-infr6tycnt] {
        grid-template-columns: 1fr;
    }

    .cidr-input-group[b-infr6tycnt] {
        grid-template-columns: 1fr;
    }

    .mode-selector[b-infr6tycnt] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .app-header[b-infr6tycnt] {
        padding: 0.75rem 1rem;
    }

    .app-header h1[b-infr6tycnt] {
        font-size: var(--font-xl);
    }

    .panel-content[b-infr6tycnt] {
        padding: 1rem;
    }

    .results-section[b-infr6tycnt] {
        padding: 1rem;
    }

    .nav-tabs[b-infr6tycnt] {
        padding: 0 1rem;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .nav-tabs .nav-link[b-infr6tycnt] {
        padding: 0.5rem 0.75rem;
        white-space: nowrap;
    }
}

/* Copy Notification */
.copy-notification[b-infr6tycnt] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--font-sm);
    font-weight: 500;
    animation: slideInUp-b-infr6tycnt 0.3s ease-out, fadeOut-b-infr6tycnt 0.3s ease-in 1.7s;
}

.copy-notification i[b-infr6tycnt] {
    font-size: var(--font-lg);
}

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

@keyframes fadeOut-b-infr6tycnt {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Scrollbar Styling */
.panel-content[b-infr6tycnt]::-webkit-scrollbar,
.templates-list[b-infr6tycnt]::-webkit-scrollbar,
.ip-list[b-infr6tycnt]::-webkit-scrollbar,
.subnets-grid[b-infr6tycnt]::-webkit-scrollbar {
    width: 8px;
}

.panel-content[b-infr6tycnt]::-webkit-scrollbar-track,
.templates-list[b-infr6tycnt]::-webkit-scrollbar-track,
.ip-list[b-infr6tycnt]::-webkit-scrollbar-track,
.subnets-grid[b-infr6tycnt]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.panel-content[b-infr6tycnt]::-webkit-scrollbar-thumb,
.templates-list[b-infr6tycnt]::-webkit-scrollbar-thumb,
.ip-list[b-infr6tycnt]::-webkit-scrollbar-thumb,
.subnets-grid[b-infr6tycnt]::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 4px;
}

.panel-content[b-infr6tycnt]::-webkit-scrollbar-thumb:hover,
.templates-list[b-infr6tycnt]::-webkit-scrollbar-thumb:hover,
.ip-list[b-infr6tycnt]::-webkit-scrollbar-thumb:hover,
.subnets-grid[b-infr6tycnt]::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

/* Mobile adjustments for notification */
@media (max-width: 480px) {
    .copy-notification[b-infr6tycnt] {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        padding: 0.75rem 1rem;
        font-size: var(--font-xs);
    }
}

/* ===================================
   QUICK GUIDE MODAL
   =================================== */

.modal-overlay[b-infr6tycnt] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn-b-infr6tycnt 0.2s ease;
}

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

@keyframes scaleIn-b-infr6tycnt {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-container.guide-modal[b-infr6tycnt] {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn-b-infr6tycnt 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .modal-container.guide-modal[b-infr6tycnt] {
    background: #2d2d2d;
}

.guide-modal .modal-header[b-infr6tycnt] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-modal .modal-header h5[b-infr6tycnt] {
    margin: 0;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guide-modal .btn-close[b-infr6tycnt] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guide-modal .btn-close:hover[b-infr6tycnt] {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.guide-modal .modal-body[b-infr6tycnt] {
    padding: 2rem;
    max-height: calc(85vh - 180px);
    overflow-y: auto;
}

.guide-body[b-infr6tycnt] {
    padding: 0;
}

.guide-intro[b-infr6tycnt] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.guide-intro p[b-infr6tycnt] {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.guide-section[b-infr6tycnt] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.guide-step[b-infr6tycnt] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid #6366f1;
    transition: all 0.2s ease;
}

[data-theme="dark"] .guide-step[b-infr6tycnt] {
    background: #2d2d2d;
    border-left-color: #8b5cf6;
}

.guide-step:hover[b-infr6tycnt] {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number[b-infr6tycnt] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.step-content[b-infr6tycnt] {
    flex: 1;
}

.step-content h6[b-infr6tycnt] {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .step-content h6[b-infr6tycnt] {
    color: #e5e7eb;
}

.step-content h6 i[b-infr6tycnt] {
    font-size: 1.1rem;
}

.step-content p[b-infr6tycnt] {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

[data-theme="dark"] .step-content p[b-infr6tycnt] {
    color: #9ca3af;
}

.guide-tips[b-infr6tycnt] {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1.25rem;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
}

[data-theme="dark"] .guide-tips[b-infr6tycnt] {
    background: linear-gradient(135deg, #78350f, #92400e);
    border-left-color: #fbbf24;
}

.guide-tips h6[b-infr6tycnt] {
    margin: 0 0 0.75rem 0;
    font-weight: 700;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .guide-tips h6[b-infr6tycnt] {
    color: #fbbf24;
}

.guide-tips h6 i[b-infr6tycnt] {
    color: #f59e0b;
}

[data-theme="dark"] .guide-tips h6 i[b-infr6tycnt] {
    color: #fbbf24;
}

.guide-tips ul[b-infr6tycnt] {
    margin: 0;
    padding-left: 1.5rem;
}

.guide-tips li[b-infr6tycnt] {
    color: #78350f;
    font-size: 0.9rem;
    line-height: 1.8;
}

[data-theme="dark"] .guide-tips li[b-infr6tycnt] {
    color: #fde68a;
}

.guide-tips strong[b-infr6tycnt] {
    color: #92400e;
    font-weight: 600;
}

[data-theme="dark"] .guide-tips strong[b-infr6tycnt] {
    color: #fbbf24;
}

.guide-modal .modal-footer[b-infr6tycnt] {
    padding: 1.5rem 2rem;
    background: #f9fafb;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    border-top: 2px solid #e5e7eb;
}

[data-theme="dark"] .guide-modal .modal-footer[b-infr6tycnt] {
    background: #1a1a1a;
    border-top-color: #444;
}

.guide-modal .btn-secondary[b-infr6tycnt] {
    padding: 0.75rem 1.5rem;
    border: 2px solid #6366f1;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #6366f1;
}

[data-theme="dark"] .guide-modal .btn-secondary[b-infr6tycnt] {
    background: #2d2d2d;
    color: #818cf8;
    border-color: #818cf8;
}

.guide-modal .btn-secondary:hover[b-infr6tycnt] {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

[data-theme="dark"] .guide-modal .btn-secondary:hover[b-infr6tycnt] {
    background: #818cf8;
    color: white;
}

/* Text color helpers */
.text-success[b-infr6tycnt] {
    color: #10b981;
}

.text-primary[b-infr6tycnt] {
    color: #3b82f6;
}

.text-info[b-infr6tycnt] {
    color: #06b6d4;
}

.text-warning[b-infr6tycnt] {
    color: #f59e0b;
}

/* Mobile responsiveness for guide */
@media (max-width: 768px) {
    .guide-modal .modal-container[b-infr6tycnt] {
        max-width: 95%;
        max-height: 90vh;
    }

    .guide-step[b-infr6tycnt] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .step-number[b-infr6tycnt] {
        align-self: flex-start;
    }
}
/* /Apps/JsonFormatter/Pages/JsonFormatterPage.razor.rz.scp.css */
/* ===================================
   PAGE HEADER
   =================================== */

.page-header[b-viofr755u5] {
    background: linear-gradient(135deg, #2d3748, #4a5568);
    color: white;
    padding: 1.5rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .page-header[b-viofr755u5] {
    background: linear-gradient(135deg, #1a202c, #2d3748);
}

.header-content[b-viofr755u5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.page-title[b-viofr755u5] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-title i[b-viofr755u5] {
    color: #fbbf24;
    font-size: 1.75rem;
}

/* ===================================
   JSON FORMATTER CONTAINER
   =================================== */

.json-formatter-container[b-viofr755u5] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

.json-formatter-header[b-viofr755u5] {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.json-formatter-title[b-viofr755u5] {
    margin: 0;
    font-size: var(--font-2xl);
    font-weight: 600;
}

.json-formatter-content[b-viofr755u5] {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 0;
    flex: 1;
    overflow: hidden;
    background: #f5f7fa;
}

.json-left-panel[b-viofr755u5] {
    background: white;
    border-right: 1px solid #e2e8f0;
    overflow-y: auto;
    overflow-x: hidden;
}

.json-right-panel[b-viofr755u5] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Action Buttons */
.json-action-buttons[b-viofr755u5] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.json-action-buttons .btn[b-viofr755u5] {
    flex: 1;
    min-width: 80px;
    font-size: var(--font-sm);
    padding: 0.4rem 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.json-action-buttons .btn i[b-viofr755u5] {
    font-size: var(--font-md);
}

/* Settings Section */
.json-settings[b-viofr755u5] {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.panel-header[b-viofr755u5] {
    color: #4a5568;
    font-size: var(--font-md);
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    padding: 0;
}

.panel-header.collapsible[b-viofr755u5] {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.panel-header.collapsible:hover[b-viofr755u5] {
    color: #667eea;
}

.settings-group[b-viofr755u5] {
    margin-bottom: 0.75rem;
}

.settings-group:last-child[b-viofr755u5] {
    margin-bottom: 0;
}

.settings-group label[b-viofr755u5] {
    display: block;
    font-size: var(--font-sm);
    color: #4a5568;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.settings-group .form-select[b-viofr755u5] {
    font-size: var(--font-sm);
}

.checkbox-label[b-viofr755u5] {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"][b-viofr755u5] {
    cursor: pointer;
}

/* Validation Status */
.validation-status[b-viofr755u5] {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.validation-status.valid[b-viofr755u5] {
    background: #f0fdf4;
}

.validation-status.invalid[b-viofr755u5] {
    background: #fef2f2;
}

.validation-message[b-viofr755u5] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-sm);
    margin-bottom: 0.5rem;
}

.validation-message i[b-viofr755u5] {
    font-size: var(--font-lg);
}

.validation-status.valid .validation-message i[b-viofr755u5] {
    color: #10b981;
}

.validation-status.invalid .validation-message i[b-viofr755u5] {
    color: #ef4444;
}

.error-location[b-viofr755u5] {
    font-size: var(--font-xs);
    color: #64748b;
    margin-top: 0.25rem;
    padding-left: 1.5rem;
}

/* Statistics */
.json-statistics[b-viofr755u5] {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.stats-grid[b-viofr755u5] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.stat-item[b-viofr755u5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-sm);
}

.stat-label[b-viofr755u5] {
    color: #64748b;
}

.stat-value[b-viofr755u5] {
    color: #1e293b;
    font-weight: 600;
}

/* Templates */
.json-templates[b-viofr755u5] {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.templates-list[b-viofr755u5] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.template-btn[b-viofr755u5] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.6rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    width: 100%;
}

.template-btn:hover[b-viofr755u5] {
    background: #f1f5f9;
    border-color: #667eea;
    transform: translateX(2px);
}

.template-btn i[b-viofr755u5] {
    color: #667eea;
    font-size: var(--font-md);
}

.template-btn span[b-viofr755u5] {
    font-size: var(--font-sm);
    color: #1e293b;
    font-weight: 500;
}

.template-btn small[b-viofr755u5] {
    font-size: var(--font-xs);
    color: #64748b;
}

/* Tools */
.json-tools[b-viofr755u5] {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.tools-list[b-viofr755u5] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.tool-btn[b-viofr755u5] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
    font-size: var(--font-sm);
    color: #4a5568;
}

.tool-btn:hover[b-viofr755u5] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

.tool-btn i[b-viofr755u5] {
    font-size: var(--font-md);
}

.search-group[b-viofr755u5] {
    margin-top: 0.75rem;
}

.search-group input[b-viofr755u5] {
    font-size: var(--font-sm);
}

/* Editor Container */
.json-editor-container[b-viofr755u5] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
}

.editor-header[b-viofr755u5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #4a5568;
    color: white;
    border-bottom: 1px solid #e2e8f0;
}

.editor-header .panel-header[b-viofr755u5] {
    color: white;
    margin: 0;
}

.editor-header .btn[b-viofr755u5] {
    font-size: var(--font-sm);
}

/* Copy Notification Toast */
.copy-notification[b-viofr755u5] {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: var(--font-sm);
    font-weight: 500;
}

.copy-notification.show[b-viofr755u5] {
    opacity: 1;
    transform: translateY(0);
}

.copy-notification i[b-viofr755u5] {
    font-size: var(--font-lg);
}

/* Editor with Line Numbers */
.editor-with-lines[b-viofr755u5] {
    flex: 1;
    display: flex;
    overflow: hidden;
    background: #0f172a;
}

.line-numbers[b-viofr755u5] {
    background: #020617;
    color: #64748b;
    padding: 1rem 0.75rem;
    text-align: right;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: var(--font-sm);
    line-height: 1.6;
    user-select: none;
    border-right: 1px solid #1e293b;
    overflow: hidden;
    min-width: 50px;
}

.line-number[b-viofr755u5] {
    height: calc(var(--font-sm) * 1.6);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: all 0.2s;
}

.line-number.error-line[b-viofr755u5] {
    background: #7f1d1d;
    color: #fca5a5;
    font-weight: 600;
    margin: 0 -0.75rem;
    padding: 0 0.75rem;
    border-left: 3px solid #ef4444;
}

/* JSON Editor */
.json-editor[b-viofr755u5] {
    flex: 1;
    width: 100%;
    padding: 1rem;
    border: none;
    outline: none;
    resize: none;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: var(--font-sm);
    line-height: 1.6;
    background: #0f172a !important;
    background-color: #0f172a !important;
    color: #e2e8f0 !important;
    overflow: auto;
}

/* Ensure background stays dark on focus */
.json-editor:focus[b-viofr755u5] {
    background: #0f172a !important;
    background-color: #0f172a !important;
    color: #e2e8f0 !important;
}

/* Override persisted-data styles for JSON editor to keep dark theme */
.json-editor.persisted-data[b-viofr755u5],
.json-editor.persisted-data:focus[b-viofr755u5] {
    background: #0f172a !important;
    background-color: #0f172a !important;
    border-left: 3px solid #8594f8 !important;
    color: #e2e8f0 !important;
}

.json-editor[b-viofr755u5]::placeholder {
    color: #475569;
}

/* Tree View */
.tree-view-container[b-viofr755u5] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: var(--font-sm);
    line-height: 1.6;
}

.tree-node[b-viofr755u5] {
    margin: 0.15rem 0;
}

.tree-node-content[b-viofr755u5] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background 0.15s;
}

.tree-node-content:hover[b-viofr755u5] {
    background: #f1f5f9;
}

.tree-toggle[b-viofr755u5] {
    color: #64748b;
    font-size: var(--font-xs);
    width: 12px;
}

.tree-spacer[b-viofr755u5] {
    width: 12px;
}

.tree-key[b-viofr755u5] {
    color: #0369a1;
    font-weight: 600;
}

.tree-value[b-viofr755u5] {
    color: #1e293b;
}

.tree-type-string[b-viofr755u5] {
    color: #059669;
}

.tree-type-number[b-viofr755u5] {
    color: #dc2626;
}

.tree-type-true[b-viofr755u5],
.tree-type-false[b-viofr755u5] {
    color: #7c3aed;
}

.tree-type-null[b-viofr755u5] {
    color: #64748b;
    font-style: italic;
}

.tree-type[b-viofr755u5] {
    color: #64748b;
    font-size: var(--font-xs);
    font-style: italic;
    margin-left: 0.5rem;
}

.tree-path[b-viofr755u5] {
    color: #94a3b8;
    font-size: var(--font-xs);
    margin-left: auto;
    opacity: 0;
    transition: opacity 0.2s;
}

.tree-node-content:hover .tree-path[b-viofr755u5] {
    opacity: 1;
}

/* XML Output */
.xml-output-container[b-viofr755u5] {
    flex: 1;
    overflow: auto;
    background: #0f172a;
}

.xml-output[b-viofr755u5] {
    margin: 0;
    padding: 1rem;
    color: #e2e8f0;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: var(--font-sm);
    line-height: 1.6;
    white-space: pre;
    overflow-x: auto;
}

/* Empty Message */
.empty-message[b-viofr755u5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #94a3b8;
    text-align: center;
}

.empty-message i[b-viofr755u5] {
    font-size: var(--font-4xl);
    margin-bottom: 1rem;
}

.empty-message p[b-viofr755u5] {
    font-size: var(--font-base);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .json-formatter-content[b-viofr755u5] {
        grid-template-columns: 320px 1fr;
    }

    .tools-list[b-viofr755u5] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .json-formatter-content[b-viofr755u5] {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .json-left-panel[b-viofr755u5] {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        max-height: 50vh;
    }

    .json-action-buttons[b-viofr755u5] {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .json-action-buttons .btn[b-viofr755u5] {
        white-space: nowrap;
    }

    .stats-grid[b-viofr755u5] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .json-formatter-header[b-viofr755u5] {
        padding: 0.75rem 1rem;
    }

    .json-formatter-title[b-viofr755u5] {
        font-size: var(--font-xl);
    }

    .json-action-buttons[b-viofr755u5] {
        padding: 0.75rem;
        gap: 0.4rem;
    }

    .json-action-buttons .btn[b-viofr755u5] {
        min-width: 70px;
        padding: 0.35rem 0.5rem;
    }

    .json-settings[b-viofr755u5],
    .validation-status[b-viofr755u5],
    .json-statistics[b-viofr755u5],
    .json-templates[b-viofr755u5],
    .json-tools[b-viofr755u5] {
        padding: 0.75rem;
    }

    .editor-header[b-viofr755u5] {
        padding: 0.75rem 1rem;
    }

    .templates-list[b-viofr755u5] {
        gap: 0.4rem;
    }

    .tools-list[b-viofr755u5] {
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem;
    }
}

@media (max-width: 576px) {
    .json-formatter-title[b-viofr755u5] {
        font-size: var(--font-lg);
    }

    .json-action-buttons .btn[b-viofr755u5] {
        font-size: var(--font-xs);
        min-width: 60px;
    }

    .tools-list[b-viofr755u5] {
        grid-template-columns: 1fr;
    }

    .json-editor[b-viofr755u5] {
        font-size: var(--font-xs);
    }

    .tree-view-container[b-viofr755u5] {
        font-size: var(--font-xs);
    }

    .xml-output[b-viofr755u5] {
        font-size: var(--font-xs);
    }
}

@media (max-width: 480px) {
    .json-formatter-header[b-viofr755u5] {
        padding: 0.5rem 0.75rem;
    }

    .json-action-buttons[b-viofr755u5] {
        padding: 0.5rem;
    }

    .json-settings[b-viofr755u5],
    .validation-status[b-viofr755u5],
    .json-statistics[b-viofr755u5],
    .json-templates[b-viofr755u5],
    .json-tools[b-viofr755u5] {
        padding: 0.5rem;
    }

    .editor-header[b-viofr755u5] {
        padding: 0.5rem 0.75rem;
    }
}

/* ===================================
   QUICK GUIDE MODAL
   =================================== */

.modal-overlay[b-viofr755u5] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn-b-viofr755u5 0.2s ease;
}

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

@keyframes scaleIn-b-viofr755u5 {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-container.guide-modal[b-viofr755u5] {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn-b-viofr755u5 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .modal-container.guide-modal[b-viofr755u5] {
    background: #2d2d2d;
}

.guide-modal .modal-header[b-viofr755u5] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-modal .modal-header h5[b-viofr755u5] {
    margin: 0;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guide-modal .btn-close[b-viofr755u5] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guide-modal .btn-close:hover[b-viofr755u5] {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.guide-modal .modal-body[b-viofr755u5] {
    padding: 2rem;
    max-height: calc(85vh - 180px);
    overflow-y: auto;
}

.guide-body[b-viofr755u5] {
    padding: 0;
}

.guide-intro[b-viofr755u5] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.guide-intro p[b-viofr755u5] {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.guide-section[b-viofr755u5] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.guide-step[b-viofr755u5] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid #6366f1;
    transition: all 0.2s ease;
}

[data-theme="dark"] .guide-step[b-viofr755u5] {
    background: #2d2d2d;
    border-left-color: #8b5cf6;
}

.guide-step:hover[b-viofr755u5] {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number[b-viofr755u5] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.step-content[b-viofr755u5] {
    flex: 1;
}

.step-content h6[b-viofr755u5] {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .step-content h6[b-viofr755u5] {
    color: #e5e7eb;
}

.step-content h6 i[b-viofr755u5] {
    font-size: 1.1rem;
}

.step-content p[b-viofr755u5] {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

[data-theme="dark"] .step-content p[b-viofr755u5] {
    color: #9ca3af;
}

.guide-tips[b-viofr755u5] {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1.25rem;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
}

[data-theme="dark"] .guide-tips[b-viofr755u5] {
    background: linear-gradient(135deg, #78350f, #92400e);
    border-left-color: #fbbf24;
}

.guide-tips h6[b-viofr755u5] {
    margin: 0 0 0.75rem 0;
    font-weight: 700;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .guide-tips h6[b-viofr755u5] {
    color: #fbbf24;
}

.guide-tips h6 i[b-viofr755u5] {
    color: #f59e0b;
}

[data-theme="dark"] .guide-tips h6 i[b-viofr755u5] {
    color: #fbbf24;
}

.guide-tips ul[b-viofr755u5] {
    margin: 0;
    padding-left: 1.5rem;
}

.guide-tips li[b-viofr755u5] {
    color: #78350f;
    font-size: 0.9rem;
    line-height: 1.8;
}

[data-theme="dark"] .guide-tips li[b-viofr755u5] {
    color: #fde68a;
}

.guide-tips strong[b-viofr755u5] {
    color: #92400e;
    font-weight: 600;
}

[data-theme="dark"] .guide-tips strong[b-viofr755u5] {
    color: #fbbf24;
}

.guide-modal .modal-footer[b-viofr755u5] {
    padding: 1.5rem 2rem;
    background: #f9fafb;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    border-top: 2px solid #e5e7eb;
}

[data-theme="dark"] .guide-modal .modal-footer[b-viofr755u5] {
    background: #1a1a1a;
    border-top-color: #444;
}

.guide-modal .btn-secondary[b-viofr755u5] {
    padding: 0.75rem 1.5rem;
    border: 2px solid #6366f1;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #6366f1;
}

[data-theme="dark"] .guide-modal .btn-secondary[b-viofr755u5] {
    background: #2d2d2d;
    color: #818cf8;
    border-color: #818cf8;
}

.guide-modal .btn-secondary:hover[b-viofr755u5] {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

[data-theme="dark"] .guide-modal .btn-secondary:hover[b-viofr755u5] {
    background: #818cf8;
    color: white;
}

/* Text color helpers */
.text-success[b-viofr755u5] {
    color: #10b981;
}

.text-primary[b-viofr755u5] {
    color: #3b82f6;
}

.text-info[b-viofr755u5] {
    color: #06b6d4;
}

.text-warning[b-viofr755u5] {
    color: #f59e0b;
}

/* Mobile responsiveness for guide */
@media (max-width: 768px) {
    .guide-modal .modal-container[b-viofr755u5] {
        max-width: 95%;
        max-height: 90vh;
    }

    .guide-step[b-viofr755u5] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .step-number[b-viofr755u5] {
        align-self: flex-start;
    }
}
/* /Apps/JwtDecoder/Pages/JwtDecoderPage.razor.rz.scp.css */
.jwt-decoder-container[b-4gh1ilbmk6] {
    height: 100%;
    display: flex;
    flex-direction: column;
    font-size: var(--font-base);
}

.jwt-decoder-header[b-4gh1ilbmk6] {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0;
}

.jwt-decoder-header h3[b-4gh1ilbmk6] {
    margin: 0 0 0.3rem 0;
    font-size: var(--font-xl);
    font-weight: 600;
}

.jwt-decoder-header p[b-4gh1ilbmk6] {
    margin: 0;
    opacity: 0.9;
    font-size: var(--font-sm);
}

.jwt-decoder-layout[b-4gh1ilbmk6] {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 0;
    flex: 1;
    overflow: hidden;
    background: #f5f7fa;
}

.jwt-decoder-left[b-4gh1ilbmk6] {
    background: white;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.jwt-decoder-right[b-4gh1ilbmk6] {
    background: #f5f7fa;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.section-header[b-4gh1ilbmk6] {
    background: #4a5568;
    color: white;
    padding: 0.6rem 1rem;
    margin: 0;
}

.section-header h5[b-4gh1ilbmk6] {
    margin: 0;
    font-size: var(--font-md);
    font-weight: 600;
}

.section-header.collapsible[b-4gh1ilbmk6] {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s;
}

.section-header.collapsible:hover[b-4gh1ilbmk6] {
    background: #5a6578;
}

.input-section[b-4gh1ilbmk6] {
    padding: 0;
}

.token-input[b-4gh1ilbmk6] {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-bottom: 1px solid #e2e8f0;
    font-family: 'Courier New', monospace;
    font-size: var(--font-sm);
    resize: vertical;
    min-height: 120px;
}

.token-input:focus[b-4gh1ilbmk6] {
    outline: none;
    border-bottom-color: #667eea;
}

.action-buttons[b-4gh1ilbmk6] {
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    border-bottom: 1px solid #e2e8f0;
}

.action-buttons .btn[b-4gh1ilbmk6] {
    font-size: var(--font-sm);
}

.signature-section[b-4gh1ilbmk6],
.history-section[b-4gh1ilbmk6] {
    border-top: 1px solid #e2e8f0;
}

.signature-content[b-4gh1ilbmk6],
.history-content[b-4gh1ilbmk6] {
    padding: 1rem;
}

.algorithm-info[b-4gh1ilbmk6] {
    background: #f7fafc;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: var(--font-sm);
    color: #4a5568;
    margin-top: 0.5rem;
}

.history-list[b-4gh1ilbmk6] {
    max-height: 250px;
    overflow-y: auto;
}

.history-item[b-4gh1ilbmk6] {
    padding: 0.6rem;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.history-item:hover[b-4gh1ilbmk6] {
    background: #edf2f7;
    border-color: #cbd5e0;
    transform: translateX(2px);
}

.history-preview[b-4gh1ilbmk6] {
    font-family: 'Courier New', monospace;
    font-size: var(--font-xs);
    color: #2d3748;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.status-section[b-4gh1ilbmk6] {
    background: white;
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

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

.status-card[b-4gh1ilbmk6] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: var(--font-sm);
}

.status-card i[b-4gh1ilbmk6] {
    font-size: var(--font-xl);
}

.status-card.status-valid[b-4gh1ilbmk6] {
    background: #f0fdf4;
    border-color: #86efac;
    color: #166534;
}

.status-card.status-valid i[b-4gh1ilbmk6] {
    color: #22c55e;
}

.status-card.status-expired[b-4gh1ilbmk6] {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #991b1b;
}

.status-card.status-expired i[b-4gh1ilbmk6] {
    color: #ef4444;
}

.status-card.status-no-exp[b-4gh1ilbmk6] {
    background: #fefce8;
    border-color: #fde047;
    color: #854d0e;
}

.status-card.status-no-exp i[b-4gh1ilbmk6] {
    color: #eab308;
}

.view-tabs[b-4gh1ilbmk6] {
    display: flex;
    background: white;
    border-bottom: 2px solid #e2e8f0;
    padding: 0 1rem;
    gap: 0.25rem;
}

.tab-button[b-4gh1ilbmk6] {
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    color: #64748b;
    font-size: var(--font-sm);
    font-weight: 500;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}

.tab-button:hover[b-4gh1ilbmk6] {
    color: #667eea;
    background: #f8fafc;
}

.tab-button.active[b-4gh1ilbmk6] {
    color: #667eea;
    border-bottom-color: #667eea;
}

.view-content[b-4gh1ilbmk6] {
    flex: 1;
    background: white;
    overflow-y: auto;
}

.view-header[b-4gh1ilbmk6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.view-header h5[b-4gh1ilbmk6] {
    margin: 0;
    font-size: var(--font-md);
    color: #2d3748;
}

.claims-view[b-4gh1ilbmk6] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.claims-filter[b-4gh1ilbmk6] {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: white;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.filter-btn[b-4gh1ilbmk6] {
    padding: 0.4rem 0.75rem;
    border: 1px solid #cbd5e0;
    background: white;
    color: #4a5568;
    font-size: var(--font-xs);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover[b-4gh1ilbmk6] {
    border-color: #667eea;
    color: #667eea;
}

.filter-btn.active[b-4gh1ilbmk6] {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.claims-table-container[b-4gh1ilbmk6] {
    flex: 1;
    overflow-y: auto;
}

.claims-table[b-4gh1ilbmk6] {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--font-sm);
}

.claims-table thead[b-4gh1ilbmk6] {
    position: sticky;
    top: 0;
    background: #f8fafc;
    z-index: 1;
}

.claims-table th[b-4gh1ilbmk6] {
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    color: #4a5568;
    border-bottom: 2px solid #e2e8f0;
}

.claims-table td[b-4gh1ilbmk6] {
    padding: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}

.claims-table tbody tr:hover[b-4gh1ilbmk6] {
    background: #f8fafc;
}

.standard-claim[b-4gh1ilbmk6] {
    background: #fefce8;
}

.custom-claim[b-4gh1ilbmk6] {
    background: #eff6ff;
}

.claim-description[b-4gh1ilbmk6] {
    font-size: var(--font-xs);
    color: #64748b;
    margin-top: 0.25rem;
    font-style: italic;
}

.claim-value[b-4gh1ilbmk6] {
    font-family: 'Courier New', monospace;
    color: #2d3748;
    word-break: break-all;
}

.json-view[b-4gh1ilbmk6] {
    padding: 1rem;
}

.json-content[b-4gh1ilbmk6] {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: var(--font-sm);
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-all;
}

.time-info[b-4gh1ilbmk6] {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.time-info h6[b-4gh1ilbmk6] {
    margin: 0 0 0.75rem 0;
    color: #2d3748;
    font-size: var(--font-sm);
}

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

.time-item[b-4gh1ilbmk6] {
    font-size: var(--font-sm);
}

.time-item strong[b-4gh1ilbmk6] {
    display: block;
    color: #4a5568;
    margin-bottom: 0.25rem;
}

.time-item div[b-4gh1ilbmk6] {
    color: #2d3748;
    font-family: 'Courier New', monospace;
}

.token-parts-view[b-4gh1ilbmk6] {
    padding: 1rem;
}

.token-part[b-4gh1ilbmk6] {
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.part-header[b-4gh1ilbmk6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    color: white;
}

.part-header.header-part[b-4gh1ilbmk6] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.part-header.payload-part[b-4gh1ilbmk6] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.part-header.signature-part[b-4gh1ilbmk6] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.part-content[b-4gh1ilbmk6] {
    padding: 1rem;
    background: #f8fafc;
    font-family: 'Courier New', monospace;
    font-size: var(--font-xs);
    word-break: break-all;
    color: #2d3748;
    max-height: 150px;
    overflow-y: auto;
}

.info-box[b-4gh1ilbmk6] {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 6px;
    padding: 0.75rem;
    display: flex;
    gap: 0.75rem;
    font-size: var(--font-sm);
}

.info-box i[b-4gh1ilbmk6] {
    color: #3b82f6;
    font-size: var(--font-lg);
    flex-shrink: 0;
}

.placeholder-content[b-4gh1ilbmk6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    color: #64748b;
    height: 100%;
}

.placeholder-content i[b-4gh1ilbmk6] {
    font-size: 4rem;
    color: #cbd5e0;
    margin-bottom: 1rem;
}

.placeholder-content h5[b-4gh1ilbmk6] {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.info-section[b-4gh1ilbmk6] {
    text-align: left;
    max-width: 600px;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.info-section h6[b-4gh1ilbmk6] {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: var(--font-md);
}

.info-section p[b-4gh1ilbmk6] {
    color: #4a5568;
    margin-bottom: 0;
    font-size: var(--font-sm);
    line-height: 1.5;
}

.error-display[b-4gh1ilbmk6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
}

.error-display i[b-4gh1ilbmk6] {
    font-size: 4rem;
    color: #ef4444;
    margin-bottom: 1rem;
}

.error-display h5[b-4gh1ilbmk6] {
    color: #991b1b;
    margin-bottom: 0.5rem;
}

.error-display p[b-4gh1ilbmk6] {
    color: #4a5568;
    max-width: 500px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .jwt-decoder-layout[b-4gh1ilbmk6] {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .jwt-decoder-left[b-4gh1ilbmk6] {
        border-right: none;
        border-bottom: 2px solid #e2e8f0;
        max-height: 50vh;
    }

    .jwt-decoder-right[b-4gh1ilbmk6] {
        overflow-y: auto;
    }
}

@media (max-width: 767px) {
    .jwt-decoder-header[b-4gh1ilbmk6] {
        padding: 0.75rem 1rem;
    }

    .jwt-decoder-header h3[b-4gh1ilbmk6] {
        font-size: var(--font-lg);
    }

    .action-buttons[b-4gh1ilbmk6] {
        flex-direction: column;
    }

    .action-buttons .btn[b-4gh1ilbmk6] {
        width: 100%;
    }

    .status-grid[b-4gh1ilbmk6] {
        grid-template-columns: 1fr;
    }

    .view-tabs[b-4gh1ilbmk6] {
        overflow-x: auto;
        padding: 0 0.5rem;
    }

    .tab-button[b-4gh1ilbmk6] {
        padding: 0.6rem 0.75rem;
        font-size: var(--font-xs);
    }

    .claims-filter[b-4gh1ilbmk6] {
        padding: 0.5rem;
    }

    .filter-btn[b-4gh1ilbmk6] {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
    }

    .claims-table[b-4gh1ilbmk6] {
        font-size: var(--font-xs);
    }

    .claims-table th[b-4gh1ilbmk6],
    .claims-table td[b-4gh1ilbmk6] {
        padding: 0.5rem;
    }

    .time-grid[b-4gh1ilbmk6] {
        grid-template-columns: 1fr;
    }

    .part-content[b-4gh1ilbmk6] {
        font-size: 0.65rem;
    }
}

/* Toast notification styles */
[b-4gh1ilbmk6] .custom-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-sm);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

[b-4gh1ilbmk6] .custom-toast.show {
    opacity: 1;
    transform: translateY(0);
}

[b-4gh1ilbmk6] .custom-toast i {
    font-size: var(--font-md);
}

/* Guide Modal Styles */

.modal-overlay[b-4gh1ilbmk6] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn-b-4gh1ilbmk6 0.2s ease;
}

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

@keyframes scaleIn-b-4gh1ilbmk6 {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-container.guide-modal[b-4gh1ilbmk6] {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn-b-4gh1ilbmk6 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .modal-container.guide-modal[b-4gh1ilbmk6] {
    background: #2d2d2d;
}

.guide-modal .modal-header[b-4gh1ilbmk6] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-modal .modal-header h5[b-4gh1ilbmk6] {
    margin: 0;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guide-modal .btn-close[b-4gh1ilbmk6] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guide-modal .btn-close:hover[b-4gh1ilbmk6] {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.guide-modal .modal-body[b-4gh1ilbmk6] {
    padding: 2rem;
    max-height: calc(85vh - 180px);
    overflow-y: auto;
}

.guide-modal .modal-footer[b-4gh1ilbmk6] {
    padding: 1.5rem 2rem;
    background: #f9fafb;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    border-top: 2px solid #e5e7eb;
}

[data-theme="dark"] .guide-modal .modal-footer[b-4gh1ilbmk6] {
    background: #1a1a1a;
    border-top-color: #444;
}

.guide-modal .btn-secondary[b-4gh1ilbmk6] {
    padding: 0.75rem 1.5rem;
    border: 2px solid #6366f1;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #6366f1;
}

[data-theme="dark"] .guide-modal .btn-secondary[b-4gh1ilbmk6] {
    background: #2d2d2d;
    color: #818cf8;
    border-color: #818cf8;
}

.guide-modal .btn-secondary:hover[b-4gh1ilbmk6] {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

[data-theme="dark"] .guide-modal .btn-secondary:hover[b-4gh1ilbmk6] {
    background: #818cf8;
    color: white;
}

.guide-body[b-4gh1ilbmk6] {
    padding: 1.5rem;
}

.guide-intro[b-4gh1ilbmk6] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.guide-intro p[b-4gh1ilbmk6] {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.guide-section[b-4gh1ilbmk6] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guide-step[b-4gh1ilbmk6] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid #6366f1;
    transition: all 0.2s ease;
}

[data-theme="dark"] .guide-step[b-4gh1ilbmk6] {
    background: #2d2d2d;
    border-left-color: #8b5cf6;
}

.guide-step:hover[b-4gh1ilbmk6] {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number[b-4gh1ilbmk6] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-content[b-4gh1ilbmk6] {
    flex: 1;
}

.step-content h6[b-4gh1ilbmk6] {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    color: #1f2937;
    font-weight: 600;
}

[data-theme="dark"] .step-content h6[b-4gh1ilbmk6] {
    color: #e9ecef;
}

.step-content p[b-4gh1ilbmk6] {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

[data-theme="dark"] .step-content p[b-4gh1ilbmk6] {
    color: #adb5bd;
}

.guide-tips[b-4gh1ilbmk6] {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

[data-theme="dark"] .guide-tips[b-4gh1ilbmk6] {
    background: linear-gradient(135deg, #78350f, #92400e);
    border-left-color: #fbbf24;
}

.guide-tips h6[b-4gh1ilbmk6] {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    color: #92400e;
    font-weight: 700;
}

[data-theme="dark"] .guide-tips h6[b-4gh1ilbmk6] {
    color: #fbbf24;
}

.guide-tips ul[b-4gh1ilbmk6] {
    margin: 0;
    padding-left: 1.25rem;
}

.guide-tips li[b-4gh1ilbmk6] {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #78350f;
    line-height: 1.5;
}

[data-theme="dark"] .guide-tips li[b-4gh1ilbmk6] {
    color: #fde68a;
}

.guide-tips li:last-child[b-4gh1ilbmk6] {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .guide-modal[b-4gh1ilbmk6] {
        max-width: 95%;
        max-height: 90vh;
    }

    .guide-step[b-4gh1ilbmk6] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .step-number[b-4gh1ilbmk6] {
        align-self: flex-start;
    }
}
/* /Apps/LocalStorageManager/Pages/LocalStorageManagerPage.razor.rz.scp.css */
.storage-manager-container[b-eg6e9cpwf6] {
    min-height: calc(100vh - 60px);
    height: auto;
    display: flex;
    flex-direction: column;
    background: var(--color-bg);
    overflow-y: auto;
}

.tool-header[b-eg6e9cpwf6] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.header-content[b-eg6e9cpwf6] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.header-icon[b-eg6e9cpwf6] {
    font-size: 3rem;
    opacity: 0.9;
}

.tool-title[b-eg6e9cpwf6] {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.tool-description[b-eg6e9cpwf6] {
    margin: 0.5rem 0 0 0;
    opacity: 0.95;
}

.content-wrapper[b-eg6e9cpwf6] {
    flex: 1;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Preference Panel */
.preference-panel[b-eg6e9cpwf6] {
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.preference-header[b-eg6e9cpwf6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.preference-header h3[b-eg6e9cpwf6] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
}

.preference-header i[b-eg6e9cpwf6] {
    margin-right: 0.5rem;
}

.preference-switch .form-check-input[b-eg6e9cpwf6] {
    width: 3.5rem;
    height: 1.75rem;
    cursor: pointer;
}

.preference-switch label[b-eg6e9cpwf6] {
    cursor: pointer;
    margin-left: 0.5rem;
    font-size: 1.1rem;
}

/* Statistics Overview */
.stats-overview[b-eg6e9cpwf6] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-eg6e9cpwf6] {
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.stat-card:hover[b-eg6e9cpwf6] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-icon[b-eg6e9cpwf6] {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.stat-icon.bg-primary[b-eg6e9cpwf6] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-icon.bg-success[b-eg6e9cpwf6] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stat-icon.bg-info[b-eg6e9cpwf6] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.stat-icon.bg-warning[b-eg6e9cpwf6] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.stat-details[b-eg6e9cpwf6] {
    flex: 1;
}

.stat-value[b-eg6e9cpwf6] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
}

.stat-label[b-eg6e9cpwf6] {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

/* Storage Quota Panel */
.storage-quota-panel[b-eg6e9cpwf6] {
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.quota-header[b-eg6e9cpwf6] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

/* Filter Panel */
.filter-panel[b-eg6e9cpwf6] {
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

/* Category Breakdown */
.category-breakdown[b-eg6e9cpwf6] {
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.category-breakdown h4[b-eg6e9cpwf6] {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
}

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

.category-item[b-eg6e9cpwf6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.category-item:hover[b-eg6e9cpwf6] {
    background: var(--color-hover);
    transform: translateX(4px);
}

.category-info[b-eg6e9cpwf6] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.category-name[b-eg6e9cpwf6] {
    font-weight: 600;
    color: var(--color-text);
}

.category-count[b-eg6e9cpwf6] {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.category-stats[b-eg6e9cpwf6] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.category-size[b-eg6e9cpwf6] {
    font-weight: 600;
    color: var(--color-primary);
}

.category-percentage[b-eg6e9cpwf6] {
    min-width: 50px;
    text-align: right;
    color: var(--color-text-muted);
}

/* Storage Items Panel */
.storage-items-panel[b-eg6e9cpwf6] {
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.panel-header[b-eg6e9cpwf6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.panel-header h4[b-eg6e9cpwf6] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
}

.table-responsive[b-eg6e9cpwf6] {
    overflow-x: auto;
}

.table[b-eg6e9cpwf6] {
    margin: 0;
    color: var(--color-text);
}

.table thead[b-eg6e9cpwf6] {
    background: var(--color-bg);
}

.table th[b-eg6e9cpwf6] {
    font-weight: 600;
    border-bottom: 2px solid var(--color-border);
    padding: 1rem;
}

.table td[b-eg6e9cpwf6] {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--color-border);
}

.table tbody tr[b-eg6e9cpwf6] {
    transition: all var(--transition-fast);
}

.table tbody tr:hover[b-eg6e9cpwf6] {
    background: var(--color-hover);
}

code[b-eg6e9cpwf6] {
    background: var(--color-bg);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    color: var(--color-accent);
    font-size: 0.875rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .storage-manager-container[b-eg6e9cpwf6] {
        min-height: 100vh;
        height: auto;
    }

    .tool-header[b-eg6e9cpwf6] {
        padding: 1.5rem;
    }

    .header-content[b-eg6e9cpwf6] {
        gap: 1rem;
    }

    .header-icon[b-eg6e9cpwf6] {
        font-size: 2rem;
    }

    .tool-title[b-eg6e9cpwf6] {
        font-size: 1.5rem;
    }

    .content-wrapper[b-eg6e9cpwf6] {
        padding: 1rem;
    }

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

    .stats-overview[b-eg6e9cpwf6] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .panel-header button[b-eg6e9cpwf6] {
        width: 100%;
    }

    .table-responsive[b-eg6e9cpwf6] {
        font-size: 0.875rem;
    }

    .table th[b-eg6e9cpwf6],
    .table td[b-eg6e9cpwf6] {
        padding: 0.75rem 0.5rem;
    }

    .category-stats[b-eg6e9cpwf6] {
        flex-direction: column;
        align-items: flex-end;
        gap: 0.25rem;
    }
}

@media (max-width: 576px) {
    .stat-icon[b-eg6e9cpwf6] {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .stat-value[b-eg6e9cpwf6] {
        font-size: 1.5rem;
    }
}
/* /Apps/MindMap/Pages/MindMapPage.razor.rz.scp.css */
/* ===================================
   MIND MAP - MODERN UI STYLES
   =================================== */

/* Container */
.mindmap-container[b-b7z17eaz4r] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 60px);
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .mindmap-container[b-b7z17eaz4r] {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

/* ===================================
   HEADER SECTION
   =================================== */
.mindmap-header[b-b7z17eaz4r] {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 1.25rem 2rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
    z-index: 100;
}

.header-content[b-b7z17eaz4r] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

.header-left[b-b7z17eaz4r] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.app-title[b-b7z17eaz4r] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    min-width: max-content;
}

.app-title i[b-b7z17eaz4r] {
    font-size: 1.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.app-title h4[b-b7z17eaz4r] {
    margin: 0;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quick-tool-badge[b-b7z17eaz4r] {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(255, 255, 255, 0.25);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-title-wrapper[b-b7z17eaz4r] {
    flex: 1;
    max-width: 500px;
}

.map-title-input[b-b7z17eaz4r] {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.map-title-input[b-b7z17eaz4r]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.map-title-input:focus[b-b7z17eaz4r] {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.header-stats[b-b7z17eaz4r] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.stat-badge[b-b7z17eaz4r] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.stat-badge i[b-b7z17eaz4r] {
    font-size: 0.9rem;
}

.stat-badge span[b-b7z17eaz4r] {
    font-size: 1.25rem;
    font-weight: 700;
}

.stat-badge small[b-b7z17eaz4r] {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================================
   TOOLBAR SECTION
   =================================== */
.mindmap-toolbar[b-b7z17eaz4r] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: white;
    border-bottom: 2px solid #e5e7eb;
    flex-wrap: wrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .mindmap-toolbar[b-b7z17eaz4r] {
    background: #1e1e1e;
    border-bottom-color: #333;
}

.toolbar-group[b-b7z17eaz4r] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toolbar-divider[b-b7z17eaz4r] {
    width: 1px;
    height: 32px;
    background: #d1d5db;
    margin: 0 0.5rem;
}

[data-theme="dark"] .toolbar-divider[b-b7z17eaz4r] {
    background: #444;
}

.tool-btn[b-b7z17eaz4r] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.tool-btn i[b-b7z17eaz4r] {
    font-size: 1.1rem;
}

.tool-btn.primary[b-b7z17eaz4r] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.tool-btn.primary:hover[b-b7z17eaz4r] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.tool-btn.success[b-b7z17eaz4r] {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.tool-btn.success:hover[b-b7z17eaz4r] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.tool-btn.danger[b-b7z17eaz4r] {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.tool-btn.danger:hover:not(:disabled)[b-b7z17eaz4r] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.tool-btn.danger:disabled[b-b7z17eaz4r] {
    opacity: 0.5;
    cursor: not-allowed;
}

.tool-btn.warning[b-b7z17eaz4r] {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.tool-btn.warning:hover[b-b7z17eaz4r] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.tool-btn.info[b-b7z17eaz4r] {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.tool-btn.info:hover[b-b7z17eaz4r] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.tool-btn.secondary[b-b7z17eaz4r] {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
}

[data-theme="dark"] .tool-btn.secondary[b-b7z17eaz4r] {
    background: #2d2d2d;
    color: #e5e7eb;
    border-color: #444;
}

.tool-btn.secondary:hover[b-b7z17eaz4r] {
    background: #e5e7eb;
    border-color: #d1d5db;
}

[data-theme="dark"] .tool-btn.secondary:hover[b-b7z17eaz4r] {
    background: #3a3a3a;
    border-color: #555;
}

.tool-btn-icon[b-b7z17eaz4r] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #4b5563;
}

[data-theme="dark"] .tool-btn-icon[b-b7z17eaz4r] {
    background: #2d2d2d;
    border-color: #444;
    color: #e5e7eb;
}

.tool-btn-icon:hover[b-b7z17eaz4r] {
    background: #f3f4f6;
    border-color: #d1d5db;
    transform: translateY(-2px);
}

[data-theme="dark"] .tool-btn-icon:hover[b-b7z17eaz4r] {
    background: #3a3a3a;
    border-color: #555;
}

.zoom-display[b-b7z17eaz4r] {
    padding: 0.5rem 1rem;
    background: #f9fafb;
    border-radius: 8px;
    font-weight: 700;
    color: #6366f1;
    min-width: 60px;
    text-align: center;
    border: 2px solid #e5e7eb;
}

[data-theme="dark"] .zoom-display[b-b7z17eaz4r] {
    background: #2d2d2d;
    border-color: #444;
}

/* ===================================
   CANVAS SECTION
   =================================== */
.mindmap-canvas-wrapper[b-b7z17eaz4r] {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
}

[data-theme="dark"] .mindmap-canvas-wrapper[b-b7z17eaz4r] {
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
}

.mindmap-canvas[b-b7z17eaz4r] {
    width: 100%;
    height: 100%;
    cursor: grab;
    user-select: none;
}

.mindmap-canvas:active[b-b7z17eaz4r] {
    cursor: grabbing;
}

/* SVG Node Styles - Rectangular Design */
.mindmap-node[b-b7z17eaz4r] {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.node-rect[b-b7z17eaz4r] {
    transition: all 0.3s ease;
}

.mindmap-node:hover .node-rect[b-b7z17eaz4r] {
    filter: brightness(1.1);
}

.mindmap-node.selected .node-rect[b-b7z17eaz4r] {
    animation: pulse-glow-b-b7z17eaz4r 2s ease-in-out infinite;
}

.node-content[b-b7z17eaz4r] {
    pointer-events: none;
}

@keyframes pulse-glow-b-b7z17eaz4r {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 16px rgba(255, 255, 255, 1));
    }
}

.connection-line[b-b7z17eaz4r] {
    transition: all 0.3s ease;
}

.node-text[b-b7z17eaz4r] {
    pointer-events: none;
    user-select: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.add-child-button[b-b7z17eaz4r] {
    cursor: pointer;
}

.add-btn-rect[b-b7z17eaz4r] {
    /* No animations - stable and user-friendly */
}

.add-btn-circle[b-b7z17eaz4r] {
    /* No animations - stable and user-friendly */
}

/* No hover effects on + button - keeps it stable */

/* Resize Handle */
.resize-handle[b-b7z17eaz4r] {
    cursor: nwse-resize;
    pointer-events: all;
}

.resize-handle-circle[b-b7z17eaz4r] {
    /* No animations - stable and user-friendly */
}

/* No hover effects on resize handle - keeps it stable */

/* Mini Map */
.minimap-container[b-b7z17eaz4r] {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 200px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 2px solid #e5e7eb;
    z-index: 50;
}

[data-theme="dark"] .minimap-container[b-b7z17eaz4r] {
    background: #2d2d2d;
    border-color: #444;
}

.minimap-header[b-b7z17eaz4r] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.minimap-content[b-b7z17eaz4r] {
    padding: 0.75rem;
    height: 150px;
}

.minimap-svg[b-b7z17eaz4r] {
    width: 100%;
    height: 100%;
    background: #f9fafb;
    border-radius: 6px;
}

[data-theme="dark"] .minimap-svg[b-b7z17eaz4r] {
    background: #1a1a1a;
}

/* ===================================
   NODE EDITOR PANEL
   =================================== */
.node-editor-panel[b-b7z17eaz4r] {
    position: fixed;
    top: 160px;
    right: 20px;
    width: 360px;
    max-height: calc(100vh - 180px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 200;
    animation: slideInRight-b-b7z17eaz4r 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 2px solid #e5e7eb;
}

[data-theme="dark"] .node-editor-panel[b-b7z17eaz4r] {
    background: #2d2d2d;
    border-color: #444;
}

@keyframes slideInRight-b-b7z17eaz4r {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.panel-header[b-b7z17eaz4r] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-header h6[b-b7z17eaz4r] {
    margin: 0;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-close-panel[b-b7z17eaz4r] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-close-panel:hover[b-b7z17eaz4r] {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.panel-body[b-b7z17eaz4r] {
    padding: 1.2rem;
    max-height: calc(100vh - 260px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group[b-b7z17eaz4r] {
    margin-bottom: 0;
}

.form-label[b-b7z17eaz4r] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

[data-theme="dark"] .form-label[b-b7z17eaz4r] {
    color: #e5e7eb;
}

.node-text-input[b-b7z17eaz4r] {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.9rem;
    resize: vertical;
    transition: all 0.2s ease;
    min-height: 36px;
    max-height: 120px;
}

[data-theme="dark"] .node-text-input[b-b7z17eaz4r] {
    background: #1a1a1a;
    border-color: #444;
    color: #e5e7eb;
}

.node-text-input:focus[b-b7z17eaz4r] {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

/* Color Picker Grid */
.color-picker-grid[b-b7z17eaz4r] {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
}

.color-swatch[b-b7z17eaz4r] {
    width: 100%;
    aspect-ratio: 1;
    border: 3px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    position: relative;
}

.color-swatch:hover[b-b7z17eaz4r] {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.color-swatch.active[b-b7z17eaz4r] {
    border-color: white;
    box-shadow: 0 0 0 3px #6366f1, 0 4px 12px rgba(99, 102, 241, 0.4);
    transform: scale(1.15);
}

/* Icon Input */
.icon-input-wrapper[b-b7z17eaz4r] {
    position: relative;
}

.icon-input-wrapper input[b-b7z17eaz4r] {
    padding-right: 3rem;
}

.btn-clear-icon[b-b7z17eaz4r] {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    padding: 0.25rem;
}

.btn-clear-icon:hover[b-b7z17eaz4r] {
    color: #ef4444;
}

.emoji-suggestions[b-b7z17eaz4r] {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.emoji-btn[b-b7z17eaz4r] {
    aspect-ratio: 1;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] .emoji-btn[b-b7z17eaz4r] {
    background: #1a1a1a;
    border-color: #444;
}

.emoji-btn:hover[b-b7z17eaz4r] {
    background: #e5e7eb;
    transform: scale(1.1);
}

[data-theme="dark"] .emoji-btn:hover[b-b7z17eaz4r] {
    background: #2d2d2d;
}

/* Node Actions */
.node-actions[b-b7z17eaz4r] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e5e7eb;
}

[data-theme="dark"] .node-actions[b-b7z17eaz4r] {
    border-top-color: #444;
}

.btn-action[b-b7z17eaz4r] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-duplicate[b-b7z17eaz4r] {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.btn-duplicate:hover[b-b7z17eaz4r] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-delete[b-b7z17eaz4r] {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.btn-delete:hover[b-b7z17eaz4r] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

/* ===================================
   MODALS
   =================================== */
.modal-overlay[b-b7z17eaz4r] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn-b-b7z17eaz4r 0.2s ease;
}

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

.modal-container[b-b7z17eaz4r] {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn-b-b7z17eaz4r 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .modal-container[b-b7z17eaz4r] {
    background: #2d2d2d;
}

@keyframes scaleIn-b-b7z17eaz4r {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-header[b-b7z17eaz4r] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h5[b-b7z17eaz4r] {
    margin: 0;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-close[b-b7z17eaz4r] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-close:hover[b-b7z17eaz4r] {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body[b-b7z17eaz4r] {
    padding: 2rem;
    max-height: calc(90vh - 180px);
    overflow-y: auto;
}

.modal-description[b-b7z17eaz4r] {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

[data-theme="dark"] .modal-description[b-b7z17eaz4r] {
    color: #9ca3af;
}

.modal-footer[b-b7z17eaz4r] {
    padding: 1.5rem 2rem;
    background: #f9fafb;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    border-top: 2px solid #e5e7eb;
}

[data-theme="dark"] .modal-footer[b-b7z17eaz4r] {
    background: #1a1a1a;
    border-top-color: #444;
}

.btn-primary[b-b7z17eaz4r],
.btn-secondary[b-b7z17eaz4r] {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary[b-b7z17eaz4r] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.btn-primary:hover[b-b7z17eaz4r] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-secondary[b-b7z17eaz4r] {
    background: #e5e7eb;
    color: #374151;
}

[data-theme="dark"] .btn-secondary[b-b7z17eaz4r] {
    background: #3a3a3a;
    color: #e5e7eb;
}

.btn-secondary:hover[b-b7z17eaz4r] {
    background: #d1d5db;
}

[data-theme="dark"] .btn-secondary:hover[b-b7z17eaz4r] {
    background: #4a4a4a;
}

/* Export Modal */
.export-modal[b-b7z17eaz4r] {
    max-width: 700px;
}

.export-options[b-b7z17eaz4r] {
    display: grid;
    gap: 1rem;
}

.export-option[b-b7z17eaz4r] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
}

[data-theme="dark"] .export-option[b-b7z17eaz4r] {
    background: #1a1a1a;
    border-color: #444;
}

.export-option:hover[b-b7z17eaz4r] {
    border-color: #6366f1;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.15);
}

[data-theme="dark"] .export-option:hover[b-b7z17eaz4r] {
    background: #2d2d2d;
}

.export-icon[b-b7z17eaz4r] {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 2rem;
    flex-shrink: 0;
}

.export-icon.json[b-b7z17eaz4r] {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.export-icon.markdown[b-b7z17eaz4r] {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.export-icon.text[b-b7z17eaz4r] {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.export-info h6[b-b7z17eaz4r] {
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #111827;
    font-size: 1.1rem;
}

[data-theme="dark"] .export-info h6[b-b7z17eaz4r] {
    color: #e5e7eb;
}

.export-info p[b-b7z17eaz4r] {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

[data-theme="dark"] .export-info p[b-b7z17eaz4r] {
    color: #9ca3af;
}

/* Template Modal */
.template-modal[b-b7z17eaz4r] {
    max-width: 900px;
}

.templates-grid[b-b7z17eaz4r] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.template-card[b-b7z17eaz4r] {
    padding: 2rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: #f9fafb;
}

[data-theme="dark"] .template-card[b-b7z17eaz4r] {
    background: #1a1a1a;
    border-color: #444;
}

.template-card:hover[b-b7z17eaz4r] {
    border-color: #6366f1;
    background: white;
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.2);
}

[data-theme="dark"] .template-card:hover[b-b7z17eaz4r] {
    background: #2d2d2d;
}

.template-icon[b-b7z17eaz4r] {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.template-card h6[b-b7z17eaz4r] {
    color: #111827;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

[data-theme="dark"] .template-card h6[b-b7z17eaz4r] {
    color: #e5e7eb;
}

.template-card p[b-b7z17eaz4r] {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

[data-theme="dark"] .template-card p[b-b7z17eaz4r] {
    color: #9ca3af;
}

/* Import Textarea */
.import-textarea[b-b7z17eaz4r] {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.85rem;
    resize: vertical;
    background: #f9fafb;
}

[data-theme="dark"] .import-textarea[b-b7z17eaz4r] {
    background: #1a1a1a;
    border-color: #444;
    color: #e5e7eb;
}

.import-textarea:focus[b-b7z17eaz4r] {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

/* Load Modal */
.load-modal[b-b7z17eaz4r] {
    max-width: 700px;
}

.empty-state[b-b7z17eaz4r] {
    text-align: center;
    padding: 4rem 2rem;
    color: #9ca3af;
}

.empty-state i[b-b7z17eaz4r] {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.empty-state p[b-b7z17eaz4r] {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.empty-state small[b-b7z17eaz4r] {
    font-size: 0.9rem;
}

.saved-maps-list[b-b7z17eaz4r] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.saved-map-card[b-b7z17eaz4r] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.2s ease;
}

[data-theme="dark"] .saved-map-card[b-b7z17eaz4r] {
    background: #1a1a1a;
    border-color: #444;
}

.saved-map-card:hover[b-b7z17eaz4r] {
    border-color: #6366f1;
    background: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

[data-theme="dark"] .saved-map-card:hover[b-b7z17eaz4r] {
    background: #2d2d2d;
}

.saved-map-info[b-b7z17eaz4r] {
    flex: 1;
    cursor: pointer;
}

.saved-map-info h6[b-b7z17eaz4r] {
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #111827;
    font-size: 1.1rem;
}

[data-theme="dark"] .saved-map-info h6[b-b7z17eaz4r] {
    color: #e5e7eb;
}

.saved-map-meta[b-b7z17eaz4r] {
    display: flex;
    gap: 1.5rem;
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .saved-map-meta[b-b7z17eaz4r] {
    color: #9ca3af;
}

.saved-map-meta span[b-b7z17eaz4r] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.saved-map-desc[b-b7z17eaz4r] {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0.5rem 0 0 0;
}

[data-theme="dark"] .saved-map-desc[b-b7z17eaz4r] {
    color: #9ca3af;
}

.btn-delete-saved[b-b7z17eaz4r] {
    width: 44px;
    height: 44px;
    background: #fef2f2;
    border: 2px solid #fecaca;
    color: #ef4444;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.btn-delete-saved:hover[b-b7z17eaz4r] {
    background: #ef4444;
    color: white;
    transform: scale(1.1);
}

/* ===================================
   TOAST NOTIFICATION
   =================================== */
.toast-notification[b-b7z17eaz4r] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2000;
    animation: slideInUp-b-b7z17eaz4r 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid;
    min-width: 300px;
}

@keyframes slideInUp-b-b7z17eaz4r {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.toast-notification i[b-b7z17eaz4r] {
    font-size: 1.5rem;
}

.toast-notification span[b-b7z17eaz4r] {
    font-weight: 600;
    font-size: 0.95rem;
}

.toast-notification.success[b-b7z17eaz4r] {
    border-left-color: #10b981;
    color: #059669;
}

.toast-notification.success i[b-b7z17eaz4r] {
    color: #10b981;
}

.toast-notification.error[b-b7z17eaz4r] {
    border-left-color: #ef4444;
    color: #dc2626;
}

.toast-notification.error i[b-b7z17eaz4r] {
    color: #ef4444;
}

.toast-notification.warning[b-b7z17eaz4r] {
    border-left-color: #f59e0b;
    color: #d97706;
}

.toast-notification.warning i[b-b7z17eaz4r] {
    color: #f59e0b;
}

.toast-notification.info[b-b7z17eaz4r] {
    border-left-color: #3b82f6;
    color: #2563eb;
}

.toast-notification.info i[b-b7z17eaz4r] {
    color: #3b82f6;
}

[data-theme="dark"] .toast-notification[b-b7z17eaz4r] {
    background: #2d2d2d;
}

/* Alert */
.alert[b-b7z17eaz4r] {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-danger[b-b7z17eaz4r] {
    background: #fef2f2;
    border: 2px solid #fecaca;
    color: #dc2626;
}

[data-theme="dark"] .alert-danger[b-b7z17eaz4r] {
    background: #3a1a1a;
    border-color: #5a2a2a;
    color: #ff6b6b;
}

/* Form Control */
.form-control[b-b7z17eaz4r] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

[data-theme="dark"] .form-control[b-b7z17eaz4r] {
    background: #1a1a1a;
    border-color: #444;
    color: #e5e7eb;
}

.form-control:focus[b-b7z17eaz4r] {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

/* Persisted Data Indicator */
.persisted-data[b-b7z17eaz4r] {
    background: rgba(99, 102, 241, 0.05) !important;
    border-left: 4px solid #6366f1 !important;
}

[data-theme="dark"] .persisted-data[b-b7z17eaz4r] {
    background: rgba(99, 102, 241, 0.1) !important;
}

/* ===================================
   MOBILE RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    .mindmap-container[b-b7z17eaz4r] {
        height: auto;
        min-height: 100vh;
    }

    .mindmap-header[b-b7z17eaz4r] {
        padding: 1rem;
    }

    .header-content[b-b7z17eaz4r] {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .header-left[b-b7z17eaz4r] {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .app-title h4[b-b7z17eaz4r] {
        font-size: 1.25rem;
    }

    .map-title-wrapper[b-b7z17eaz4r] {
        max-width: none;
    }

    .header-stats[b-b7z17eaz4r] {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .stat-badge[b-b7z17eaz4r] {
        font-size: 0.85rem;
    }

    .mindmap-toolbar[b-b7z17eaz4r] {
        padding: 1rem;
        gap: 0.75rem;
    }

    .toolbar-group[b-b7z17eaz4r] {
        flex-wrap: wrap;
    }

    .tool-btn span[b-b7z17eaz4r] {
        display: none;
    }

    .tool-btn[b-b7z17eaz4r] {
        padding: 0.75rem;
        min-width: 44px;
    }

    .mindmap-canvas-wrapper[b-b7z17eaz4r] {
        min-height: 500px;
    }

    .node-editor-panel[b-b7z17eaz4r] {
        position: fixed;
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        max-height: 70vh;
        border-radius: 20px 20px 0 0;
    }

    .panel-body[b-b7z17eaz4r] {
        max-height: calc(70vh - 80px);
    }

    .minimap-container[b-b7z17eaz4r] {
        width: 150px;
        bottom: 10px;
        right: 10px;
    }

    .minimap-content[b-b7z17eaz4r] {
        height: 100px;
    }

    .modal-container[b-b7z17eaz4r] {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    .templates-grid[b-b7z17eaz4r] {
        grid-template-columns: 1fr;
    }

    .color-picker-grid[b-b7z17eaz4r] {
        grid-template-columns: repeat(4, 1fr);
    }

    .emoji-suggestions[b-b7z17eaz4r] {
        grid-template-columns: repeat(6, 1fr);
    }

    .toast-notification[b-b7z17eaz4r] {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .toolbar-divider[b-b7z17eaz4r] {
        display: none;
    }

    .stat-badge span[b-b7z17eaz4r] {
        font-size: 1rem;
    }

    .zoom-display[b-b7z17eaz4r] {
        min-width: 50px;
        font-size: 0.85rem;
    }
}

/* ===================================
   QUICK GUIDE MODAL
   =================================== */
.guide-modal[b-b7z17eaz4r] {
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
}

.guide-body[b-b7z17eaz4r] {
    padding: 1.5rem;
}

.guide-intro[b-b7z17eaz4r] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.guide-intro p[b-b7z17eaz4r] {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.guide-section[b-b7z17eaz4r] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.guide-step[b-b7z17eaz4r] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid #6366f1;
    transition: all 0.2s ease;
}

[data-theme="dark"] .guide-step[b-b7z17eaz4r] {
    background: #2d2d2d;
    border-left-color: #8b5cf6;
}

.guide-step:hover[b-b7z17eaz4r] {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number[b-b7z17eaz4r] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.step-content[b-b7z17eaz4r] {
    flex: 1;
}

.step-content h6[b-b7z17eaz4r] {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .step-content h6[b-b7z17eaz4r] {
    color: #e5e7eb;
}

.step-content h6 i[b-b7z17eaz4r] {
    font-size: 1.1rem;
}

.step-content p[b-b7z17eaz4r] {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

[data-theme="dark"] .step-content p[b-b7z17eaz4r] {
    color: #9ca3af;
}

.guide-tips[b-b7z17eaz4r] {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1.25rem;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
}

[data-theme="dark"] .guide-tips[b-b7z17eaz4r] {
    background: linear-gradient(135deg, #78350f, #92400e);
    border-left-color: #fbbf24;
}

.guide-tips h6[b-b7z17eaz4r] {
    margin: 0 0 0.75rem 0;
    font-weight: 700;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .guide-tips h6[b-b7z17eaz4r] {
    color: #fbbf24;
}

.guide-tips h6 i[b-b7z17eaz4r] {
    color: #f59e0b;
}

[data-theme="dark"] .guide-tips h6 i[b-b7z17eaz4r] {
    color: #fbbf24;
}

.guide-tips ul[b-b7z17eaz4r] {
    margin: 0;
    padding-left: 1.5rem;
}

.guide-tips li[b-b7z17eaz4r] {
    color: #78350f;
    font-size: 0.9rem;
    line-height: 1.8;
}

[data-theme="dark"] .guide-tips li[b-b7z17eaz4r] {
    color: #fde68a;
}

.guide-tips strong[b-b7z17eaz4r] {
    color: #92400e;
    font-weight: 600;
}

[data-theme="dark"] .guide-tips strong[b-b7z17eaz4r] {
    color: #fbbf24;
}

/* Text color helpers */
.text-success[b-b7z17eaz4r] {
    color: #10b981;
}

.text-primary[b-b7z17eaz4r] {
    color: #3b82f6;
}

.text-info[b-b7z17eaz4r] {
    color: #06b6d4;
}

/* Mobile responsiveness for guide */
@media (max-width: 768px) {
    .guide-modal[b-b7z17eaz4r] {
        max-width: 95%;
        max-height: 90vh;
    }

    .guide-step[b-b7z17eaz4r] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .step-number[b-b7z17eaz4r] {
        align-self: flex-start;
    }
}
/* /Apps/ProductivityTimer/Pages/ProductivityTimerPage.razor.rz.scp.css */
.pomodoro-container[b-0djc0p16fk] {
    display: flex;
    height: calc(100vh - 60px);
    max-height: calc(100vh - 60px);
    background: var(--background-color, #f5f5f5);
    overflow: hidden;
    padding: 20px;
    gap: 20px;
    box-sizing: border-box;
}

/* Timer Section */
.timer-section[b-0djc0p16fk] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--card-background, white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    color: var(--text-color, #333);
    transition: background 0.3s ease, color 0.3s ease;
    overflow: visible;
    gap: 1rem;
}

.session-type[b-0djc0p16fk] {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.session-type i[b-0djc0p16fk] {
    font-size: 1.4rem;
    -webkit-text-fill-color: #FF6B6B;
}

.timer-display[b-0djc0p16fk] {
    flex-shrink: 0;
}

.timer-circle[b-0djc0p16fk] {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.timer-circle.running[b-0djc0p16fk] {
    animation: pulse-b-0djc0p16fk 2s ease-in-out infinite;
}

.timer-circle.low-time[b-0djc0p16fk] {
    animation: pulse-warning-b-0djc0p16fk 1s ease-in-out infinite;
}

@keyframes pulse-b-0djc0p16fk {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3), 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 32px rgba(255, 107, 107, 0.45), 0 8px 20px rgba(0, 0, 0, 0.15);
    }
}

@keyframes pulse-warning-b-0djc0p16fk {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 24px rgba(231, 76, 60, 0.5);
    }
}

.timer-time[b-0djc0p16fk] {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -1px;
    transition: all 0.3s ease;
}

.timer-time.low-time[b-0djc0p16fk] {
    color: #e74c3c;
    animation: blink-b-0djc0p16fk 1s ease-in-out infinite;
}

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

.session-counter[b-0djc0p16fk] {
    font-size: 0.875rem;
    color: var(--text-secondary, #888);
    transition: color 0.3s ease;
    flex-shrink: 0;
}

/* Motivational Quote */
.motivational-quote[b-0djc0p16fk] {
    max-width: 500px;
    width: 100%;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(255, 142, 83, 0.05));
    border-left: 4px solid #FF6B6B;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.motivational-quote i[b-0djc0p16fk] {
    font-size: 1rem;
    color: #FF6B6B;
    opacity: 0.4;
    flex-shrink: 0;
}

.quote-text[b-0djc0p16fk] {
    font-size: 0.8rem;
    font-style: italic;
    line-height: 1.3;
    color: var(--text-color, #333);
    margin: 0;
    font-weight: 500;
    display: inline;
}

.quote-author[b-0djc0p16fk] {
    font-size: 0.75rem;
    color: #FF6B6B;
    font-weight: 600;
    margin: 0;
    display: inline;
    margin-left: 0.5rem;
}

/* Session Progress Badges */
.session-progress[b-0djc0p16fk] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-shrink: 0;
}

.session-dot[b-0djc0p16fk] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--progress-dot-inactive, #e0e0e0);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.session-dot.completed[b-0djc0p16fk] {
    background: linear-gradient(135deg, #10B981, #059669);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.session-dot.current[b-0djc0p16fk] {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    transform: scale(1.2);
    border-color: #FF6B6B;
    box-shadow: 0 0 16px rgba(255, 107, 107, 0.7);
    animation: current-pulse-b-0djc0p16fk 1.5s ease-in-out infinite;
}

@keyframes current-pulse-b-0djc0p16fk {
    0%, 100% {
        box-shadow: 0 0 16px rgba(255, 107, 107, 0.7);
    }
    50% {
        box-shadow: 0 0 24px rgba(255, 107, 107, 1);
    }
}

/* Statistics Display */
.statistics-panel[b-0djc0p16fk] {
    background: var(--stats-background, #fafafa);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color, #f0f0f0);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.statistics-grid[b-0djc0p16fk] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-item[b-0djc0p16fk] {
    text-align: center;
}

.stat-value[b-0djc0p16fk] {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    transition: all 0.3s ease;
}

.stat-label[b-0djc0p16fk] {
    font-size: 0.7rem;
    color: var(--text-secondary, #888);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.15rem;
    transition: color 0.3s ease;
}

/* Control Buttons */
.timer-controls[b-0djc0p16fk] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    flex-shrink: 0;
}

.btn-control[b-0djc0p16fk] {
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #555;
}

.btn-control:hover[b-0djc0p16fk] {
    border-color: #FF6B6B;
    color: #FF6B6B;
    background: #FFF5F5;
}

.btn-control:active[b-0djc0p16fk] {
    transform: scale(0.98);
}

.btn-start[b-0djc0p16fk], .btn-resume[b-0djc0p16fk] {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white !important;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.btn-start:hover[b-0djc0p16fk], .btn-resume:hover[b-0djc0p16fk] {
    background: linear-gradient(135deg, #FF5252 0%, #FF7043 100%);
    color: white !important;
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.45);
    transform: translateY(-2px);
}

.btn-pause[b-0djc0p16fk] {
    background: white;
    color: #555;
    border-color: #e0e0e0;
}

.btn-pause:hover[b-0djc0p16fk] {
    border-color: #F59E0B;
    color: #F59E0B;
    background: #FFFBEB;
}

.btn-stop[b-0djc0p16fk] {
    background: white;
    color: #555;
    border-color: #e0e0e0;
}

.btn-stop:hover[b-0djc0p16fk] {
    border-color: #e74c3c;
    color: #e74c3c;
}

.btn-skip[b-0djc0p16fk] {
    background: white;
    color: #555;
    border-color: #e0e0e0;
}

.btn-skip:hover[b-0djc0p16fk] {
    border-color: #8B5CF6;
    color: #8B5CF6;
    background: #F5F3FF;
}

/* Settings Section */
.settings-section[b-0djc0p16fk] {
    width: 380px;
    background: var(--card-background, white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    transition: background 0.3s ease;
}

.settings-title[b-0djc0p16fk] {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--heading-color, #4a5568);
    border-bottom: 2px solid var(--border-color, #f0f0f0);
    padding-bottom: 0.75rem;
    transition: all 0.3s ease;
}

/* Preset Buttons */
.presets-section[b-0djc0p16fk] {
    margin-bottom: 1.5rem;
}

.preset-buttons[b-0djc0p16fk] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.btn-preset[b-0djc0p16fk] {
    padding: 0.6rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--border-color, #e0e0e0);
    background: var(--card-background, white);
    color: var(--text-color, #555);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-preset:hover[b-0djc0p16fk] {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    border: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.35);
}

.btn-preset:active[b-0djc0p16fk] {
    transform: translateY(0);
}

.settings-group[b-0djc0p16fk] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.setting-item[b-0djc0p16fk] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.setting-item label[b-0djc0p16fk] {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary, #666);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.input-group[b-0djc0p16fk] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-adjust[b-0djc0p16fk] {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color, #e0e0e0);
    background: var(--card-background, white);
    color: var(--text-secondary, #666);
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-adjust:hover[b-0djc0p16fk] {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    border: none;
}

.duration-input[b-0djc0p16fk] {
    width: 70px;
    padding: 0.5rem;
    border: 1px solid var(--border-color, #e0e0e0);
    background: var(--input-background, white);
    border-radius: 6px;
    font-size: 0.9375rem;
    text-align: center;
    transition: all 0.2s ease;
    color: var(--text-color, #333);
}

.duration-input:focus[b-0djc0p16fk] {
    outline: none;
    border-color: #FF6B6B;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.unit[b-0djc0p16fk] {
    font-size: 0.8125rem;
    color: var(--text-muted, #999);
    min-width: 30px;
    transition: color 0.3s ease;
}

/* Toggle Settings */
.settings-toggles[b-0djc0p16fk] {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--stats-background, #fafafa);
    border-radius: 8px;
    border: 1px solid var(--border-color, #f0f0f0);
    transition: all 0.3s ease;
}

.toggle-item[b-0djc0p16fk] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-color, #555);
    transition: color 0.3s ease;
}

.toggle-item input[type="checkbox"][b-0djc0p16fk] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #FF6B6B;
}

.toggle-item span[b-0djc0p16fk] {
    user-select: none;
}

/* Reset Button */
.btn-reset[b-0djc0p16fk] {
    width: 100%;
    padding: 0.75rem;
    background: var(--card-background, white);
    color: var(--text-color, #555);
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-reset:hover[b-0djc0p16fk] {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pomodoro-container[b-0djc0p16fk] {
        gap: 15px;
        padding: 15px;
    }

    .settings-section[b-0djc0p16fk] {
        width: 340px;
    }

    .timer-circle[b-0djc0p16fk] {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .pomodoro-container[b-0djc0p16fk] {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
        height: auto;
        min-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .timer-section[b-0djc0p16fk] {
        min-height: auto;
        padding: 1rem;
        overflow: visible;
        gap: 0.75rem;
    }

    .timer-circle[b-0djc0p16fk] {
        width: 200px;
        height: 200px;
    }

    .timer-time[b-0djc0p16fk] {
        font-size: 2.5rem;
    }

    .motivational-quote[b-0djc0p16fk] {
        flex-direction: column;
        padding: 0.6rem 0.75rem;
        gap: 0.3rem;
        max-width: 100%;
    }

    .motivational-quote i[b-0djc0p16fk] {
        font-size: 0.9rem;
    }

    .quote-text[b-0djc0p16fk] {
        font-size: 0.75rem;
        line-height: 1.3;
        display: block;
        margin-bottom: 0.15rem;
    }

    .quote-author[b-0djc0p16fk] {
        font-size: 0.7rem;
        display: block;
        margin-left: 0;
    }

    .settings-section[b-0djc0p16fk] {
        width: 100%;
        max-height: none;
        padding: 1.5rem;
        overflow: visible;
    }

    .settings-title[b-0djc0p16fk] {
        font-size: 1rem;
    }

    .session-type[b-0djc0p16fk] {
        font-size: 0.85rem;
    }

    .session-counter[b-0djc0p16fk] {
        font-size: 0.8rem;
    }

    .statistics-panel[b-0djc0p16fk] {
        padding: 0.6rem 0.75rem;
    }

    .stat-value[b-0djc0p16fk] {
        font-size: 1.3rem;
    }

    .stat-label[b-0djc0p16fk] {
        font-size: 0.65rem;
    }

    .timer-controls[b-0djc0p16fk] {
        flex-direction: row;
        width: 100%;
        gap: 0.5rem;
    }

    .btn-control[b-0djc0p16fk] {
        flex: 1;
        justify-content: center;
        padding: 0.65rem 0.75rem;
        font-size: 0.85rem;
        min-width: fit-content;
    }

    .setting-item label[b-0djc0p16fk] {
        font-size: 0.75rem;
    }

    .duration-input[b-0djc0p16fk] {
        width: 60px;
        font-size: 0.875rem;
    }

    .btn-adjust[b-0djc0p16fk] {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pomodoro-container[b-0djc0p16fk] {
        padding: 8px;
        gap: 8px;
    }

    .timer-section[b-0djc0p16fk] {
        padding: 0.75rem 0.5rem;
        min-height: auto;
        gap: 0.5rem;
    }

    .motivational-quote[b-0djc0p16fk] {
        flex-direction: column;
        padding: 0.5rem 0.6rem;
        gap: 0.25rem;
        max-width: 100%;
    }

    .motivational-quote i[b-0djc0p16fk] {
        font-size: 0.85rem;
    }

    .quote-text[b-0djc0p16fk] {
        font-size: 0.7rem;
        line-height: 1.25;
        display: block;
        margin-bottom: 0.1rem;
    }

    .quote-author[b-0djc0p16fk] {
        font-size: 0.65rem;
        display: block;
        margin-left: 0;
    }

    .timer-circle[b-0djc0p16fk] {
        width: 160px;
        height: 160px;
    }

    .timer-time[b-0djc0p16fk] {
        font-size: 2rem;
    }

    .session-type[b-0djc0p16fk] {
        font-size: 0.75rem;
    }

    .session-counter[b-0djc0p16fk] {
        font-size: 0.7rem;
    }

    .statistics-panel[b-0djc0p16fk] {
        padding: 0.5rem 0.6rem;
    }

    .stat-value[b-0djc0p16fk] {
        font-size: 1.15rem;
    }

    .stat-label[b-0djc0p16fk] {
        font-size: 0.6rem;
    }

    .btn-control[b-0djc0p16fk] {
        padding: 0.6rem 0.4rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .btn-control i[b-0djc0p16fk] {
        font-size: 0.9rem;
    }

    .settings-section[b-0djc0p16fk] {
        padding: 1rem;
    }

    .settings-title[b-0djc0p16fk] {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .settings-group[b-0djc0p16fk] {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .settings-toggles[b-0djc0p16fk] {
        padding: 0.75rem;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .toggle-item[b-0djc0p16fk] {
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .toggle-item input[type="checkbox"][b-0djc0p16fk] {
        width: 16px;
        height: 16px;
    }
}

/* ============================================
   Task Tracking Styles
   ============================================ */

/* Task Section */
.task-section[b-0djc0p16fk] {
    width: 380px;
    background: var(--card-background, white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background 0.3s ease;
}

.task-header[b-0djc0p16fk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color, #f0f0f0);
}

.task-title[b-0djc0p16fk] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--heading-color, #4a5568);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.task-title i[b-0djc0p16fk] {
    color: #FF6B6B;
}

.task-actions[b-0djc0p16fk] {
    display: flex;
    gap: 0.5rem;
}

.btn-task-action[b-0djc0p16fk] {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color, #e0e0e0);
    background: var(--card-background, white);
    color: var(--text-color, #555);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.btn-task-action:hover[b-0djc0p16fk] {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    border: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

/* Active Task Display */
.active-task-display[b-0djc0p16fk] {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(255, 142, 83, 0.05));
    border-radius: 10px;
    padding: 1rem;
    border-left: 4px solid #FF6B6B;
    transition: all 0.3s ease;
}

.active-task-info[b-0djc0p16fk] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.active-task-badge[b-0djc0p16fk] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    background: #FF6B6B;
    color: white;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.active-task-name[b-0djc0p16fk] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color, #333);
    margin: 0;
}

.active-task-description[b-0djc0p16fk] {
    font-size: 0.85rem;
    color: var(--text-secondary, #666);
    margin: 0;
    line-height: 1.4;
}

.active-task-stats[b-0djc0p16fk] {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary, #888);
}

.active-task-stats span[b-0djc0p16fk] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.active-task-stats i[b-0djc0p16fk] {
    color: #FF6B6B;
}

/* No Active Task Message */
.no-active-task[b-0djc0p16fk] {
    background: var(--stats-background, #fafafa);
    border: 2px dashed var(--border-color, #e0e0e0);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    color: var(--text-secondary, #888);
}

.no-active-task i[b-0djc0p16fk] {
    font-size: 1.5rem;
    color: var(--text-muted, #ccc);
    margin-bottom: 0.5rem;
}

.no-active-task p[b-0djc0p16fk] {
    margin: 0;
    font-size: 0.85rem;
}

/* Task List */
.task-list[b-0djc0p16fk] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.task-list-title[b-0djc0p16fk] {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary, #666);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0.5rem 0;
}

/* Task Item */
.task-item[b-0djc0p16fk] {
    background: var(--card-background, white);
    border: 1px solid var(--border-color, #e0e0e0);
    border-left: 4px solid #ccc;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.task-item:hover[b-0djc0p16fk] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.task-item.active[b-0djc0p16fk] {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.02), rgba(255, 142, 83, 0.02));
    border-color: #FF6B6B;
}

.task-item-header[b-0djc0p16fk] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.task-color-dot[b-0djc0p16fk] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.task-item-name[b-0djc0p16fk] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color, #333);
    flex: 1;
}

.task-active-badge[b-0djc0p16fk] {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.task-item-stats[b-0djc0p16fk] {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-secondary, #888);
}

.task-item-actions[b-0djc0p16fk] {
    display: flex;
    gap: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color, #f0f0f0);
}

.btn-task-mini[b-0djc0p16fk] {
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--border-color, #e0e0e0);
    background: var(--card-background, white);
    color: var(--text-secondary, #666);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-task-mini:hover[b-0djc0p16fk] {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    border: none;
    transform: scale(1.05);
}

.btn-task-mini.btn-danger:hover[b-0djc0p16fk] {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

/* ============================================
   Modal Styles
   ============================================ */

.modal-overlay[b-0djc0p16fk] {
    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: 9999;
    padding: 20px;
}

.modal-content[b-0djc0p16fk] {
    background: var(--card-background, white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn-b-0djc0p16fk 0.3s ease;
}

.modal-content.modal-large[b-0djc0p16fk] {
    max-width: 700px;
}

.modal-content.modal-small[b-0djc0p16fk] {
    max-width: 400px;
}

@keyframes modalSlideIn-b-0djc0p16fk {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header[b-0djc0p16fk] {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color, #f0f0f0);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h4[b-0djc0p16fk] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color, #333);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-close-modal[b-0djc0p16fk] {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--text-secondary, #888);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.btn-close-modal:hover[b-0djc0p16fk] {
    background: var(--stats-background, #f5f5f5);
    color: var(--text-color, #333);
}

.modal-body[b-0djc0p16fk] {
    padding: 1.5rem;
}

.modal-footer[b-0djc0p16fk] {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color, #f0f0f0);
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

/* Form Styles */
.form-group[b-0djc0p16fk] {
    margin-bottom: 1.25rem;
}

.form-group label[b-0djc0p16fk] {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color, #333);
    margin-bottom: 0.5rem;
}

.form-group .required[b-0djc0p16fk] {
    color: #e74c3c;
}

.form-control[b-0djc0p16fk] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color, #e0e0e0);
    background: var(--input-background, white);
    border-radius: 8px;
    font-size: 0.9375rem;
    color: var(--text-color, #333);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-control:focus[b-0djc0p16fk] {
    outline: none;
    border-color: #FF6B6B;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-control[b-0djc0p16fk]::placeholder {
    color: var(--text-muted, #aaa);
}

/* Color Picker */
.color-picker[b-0djc0p16fk] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.color-option[b-0djc0p16fk] {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.color-option:hover[b-0djc0p16fk] {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.color-option.selected[b-0djc0p16fk] {
    border-color: white;
    box-shadow: 0 0 0 2px var(--text-color, #333);
    transform: scale(1.1);
}

/* Alert */
.alert[b-0djc0p16fk] {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.alert-danger[b-0djc0p16fk] {
    background: #fff5f5;
    color: #c0392b;
    border: 1px solid #f5c6cb;
}

.alert-success[b-0djc0p16fk] {
    background: #f0fdf4;
    color: #065f46;
    border: 1px solid #86efac;
}

/* Button Styles */
.btn-primary[b-0djc0p16fk] {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover[b-0djc0p16fk] {
    background: linear-gradient(135deg, #FF5252, #FF7043);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.35);
    transform: translateY(-2px);
}

.btn-secondary[b-0djc0p16fk] {
    padding: 0.75rem 1.5rem;
    background: var(--card-background, white);
    color: var(--text-color, #555);
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover[b-0djc0p16fk] {
    background: var(--stats-background, #f5f5f5);
}

.btn-danger[b-0djc0p16fk] {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-danger:hover[b-0djc0p16fk] {
    background: linear-gradient(135deg, #c0392b, #a93226);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.35);
    transform: translateY(-2px);
}

/* Export/Import Section */
.export-section[b-0djc0p16fk],
.import-section[b-0djc0p16fk] {
    margin-bottom: 1.5rem;
}

.export-section h5[b-0djc0p16fk],
.import-section h5[b-0djc0p16fk] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color, #333);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.help-text[b-0djc0p16fk] {
    font-size: 0.85rem;
    color: var(--text-secondary, #666);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.section-divider[b-0djc0p16fk] {
    margin: 1.5rem 0;
    border: none;
    border-top: 1px solid var(--border-color, #e0e0e0);
}

.btn-export[b-0djc0p16fk],
.btn-import[b-0djc0p16fk] {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-export:hover[b-0djc0p16fk],
.btn-import:hover[b-0djc0p16fk] {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
    transform: translateY(-2px);
}

.btn-import:disabled[b-0djc0p16fk] {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    transform: none;
}

.import-area[b-0djc0p16fk] {
    margin-bottom: 1rem;
}

.import-textarea[b-0djc0p16fk] {
    width: 100%;
    min-height: 150px;
    padding: 0.75rem;
    border: 1px solid var(--border-color, #e0e0e0);
    background: var(--input-background, white);
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    color: var(--text-color, #333);
    resize: vertical;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.import-textarea:focus[b-0djc0p16fk] {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.text-danger[b-0djc0p16fk] {
    color: #e74c3c;
}

/* Responsive Design for Task Section */
@media (max-width: 1024px) {
    .task-section[b-0djc0p16fk] {
        width: 340px;
    }
}

@media (max-width: 768px) {
    .pomodoro-container[b-0djc0p16fk] {
        flex-direction: column;
    }

    .task-section[b-0djc0p16fk] {
        width: 100%;
        max-height: none;
        padding: 1.25rem;
        overflow: visible;
    }

    .task-title[b-0djc0p16fk] {
        font-size: 1rem;
    }

    .btn-task-action[b-0djc0p16fk] {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .active-task-name[b-0djc0p16fk] {
        font-size: 1rem;
    }

    .task-item-name[b-0djc0p16fk] {
        font-size: 0.85rem;
    }

    .modal-content[b-0djc0p16fk] {
        max-width: 95%;
        margin: 10px;
    }
}

@media (max-width: 480px) {
    .task-section[b-0djc0p16fk] {
        padding: 1rem;
    }

    .task-title[b-0djc0p16fk] {
        font-size: 0.95rem;
    }

    .btn-task-action[b-0djc0p16fk] {
        width: 30px;
        height: 30px;
        font-size: 0.95rem;
    }

    .active-task-name[b-0djc0p16fk] {
        font-size: 0.95rem;
    }

    .active-task-description[b-0djc0p16fk] {
        font-size: 0.8rem;
    }

    .active-task-stats[b-0djc0p16fk] {
        font-size: 0.75rem;
    }

    .task-item-name[b-0djc0p16fk] {
        font-size: 0.8rem;
    }

    .task-item-stats[b-0djc0p16fk] {
        font-size: 0.7rem;
    }

    .modal-header h4[b-0djc0p16fk] {
        font-size: 1.1rem;
    }

    .modal-body[b-0djc0p16fk] {
        padding: 1rem;
    }

    .form-control[b-0djc0p16fk] {
        font-size: 0.875rem;
    }

    .color-picker[b-0djc0p16fk] {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.4rem;
    }

    .color-option[b-0djc0p16fk] {
        width: 35px;
        height: 35px;
    }

    .btn-primary[b-0djc0p16fk],
    .btn-secondary[b-0djc0p16fk],
    .btn-danger[b-0djc0p16fk] {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* Scrollbar Styling */
.settings-section[b-0djc0p16fk]::-webkit-scrollbar,
.task-section[b-0djc0p16fk]::-webkit-scrollbar,
.modal-content[b-0djc0p16fk]::-webkit-scrollbar {
    width: 6px;
}

.settings-section[b-0djc0p16fk]::-webkit-scrollbar-track,
.task-section[b-0djc0p16fk]::-webkit-scrollbar-track,
.modal-content[b-0djc0p16fk]::-webkit-scrollbar-track {
    background: transparent;
}

.settings-section[b-0djc0p16fk]::-webkit-scrollbar-thumb,
.task-section[b-0djc0p16fk]::-webkit-scrollbar-thumb,
.modal-content[b-0djc0p16fk]::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 3px;
}

.settings-section[b-0djc0p16fk]::-webkit-scrollbar-thumb:hover,
.task-section[b-0djc0p16fk]::-webkit-scrollbar-thumb:hover,
.modal-content[b-0djc0p16fk]::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

/* Daily Statistics Modal */
.daily-stats-container[b-0djc0p16fk] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 500px;
    overflow-y: auto;
}

.daily-stat-card[b-0djc0p16fk] {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    border-left: 4px solid #6366f1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.daily-stat-card:hover[b-0djc0p16fk] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(4px);
}

.daily-stat-card.no-activity[b-0djc0p16fk] {
    border-left-color: #e0e0e0;
    opacity: 0.7;
}

.daily-stat-header[b-0djc0p16fk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.daily-stat-date[b-0djc0p16fk] {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.daily-stat-date i[b-0djc0p16fk] {
    color: #6366f1;
}

.today-badge[b-0djc0p16fk] {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.daily-stat-summary[b-0djc0p16fk] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-highlight[b-0djc0p16fk] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #6366f1;
}

.stat-sessions[b-0djc0p16fk] {
    font-size: 0.85rem;
    color: #666;
}

.daily-stat-breakdown[b-0djc0p16fk] {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

.session-types[b-0djc0p16fk] {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: #555;
}

.session-types i[b-0djc0p16fk] {
    margin-right: 0.25rem;
}

.task-breakdown h6[b-0djc0p16fk] {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.task-stat-item[b-0djc0p16fk] {
    margin-bottom: 0.5rem;
}

.task-stat-bar[b-0djc0p16fk] {
    height: 6px;
    background: #f3f4f6;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.task-stat-color[b-0djc0p16fk] {
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.task-stat-info[b-0djc0p16fk] {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.task-stat-name[b-0djc0p16fk] {
    font-weight: 500;
    color: #333;
}

.task-stat-time[b-0djc0p16fk] {
    color: #666;
}

.no-activity-message[b-0djc0p16fk] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.no-activity-message i[b-0djc0p16fk] {
    font-size: 1.25rem;
}

/* Dark mode styles for daily stats */
[data-theme="dark"] .daily-stat-card[b-0djc0p16fk] {
    background: #2d2d2d;
    border-left-color: #8b5cf6;
}

[data-theme="dark"] .daily-stat-card.no-activity[b-0djc0p16fk] {
    border-left-color: #444;
}

[data-theme="dark"] .daily-stat-date[b-0djc0p16fk] {
    color: #e9ecef;
}

[data-theme="dark"] .daily-stat-date i[b-0djc0p16fk] {
    color: #8b5cf6;
}

[data-theme="dark"] .stat-highlight[b-0djc0p16fk] {
    color: #a78bfa;
}

[data-theme="dark"] .stat-sessions[b-0djc0p16fk],
[data-theme="dark"] .session-types[b-0djc0p16fk],
[data-theme="dark"] .task-stat-time[b-0djc0p16fk] {
    color: #aaa;
}

[data-theme="dark"] .daily-stat-breakdown[b-0djc0p16fk] {
    border-top-color: #444;
}

[data-theme="dark"] .task-breakdown h6[b-0djc0p16fk] {
    color: #999;
}

[data-theme="dark"] .task-stat-name[b-0djc0p16fk] {
    color: #e9ecef;
}

[data-theme="dark"] .task-stat-bar[b-0djc0p16fk] {
    background: #444;
}

[data-theme="dark"] .no-activity-message[b-0djc0p16fk] {
    color: #777;
}

/* Help Guide Modal Styles */
.guide-modal[b-0djc0p16fk] {
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
}

.guide-body[b-0djc0p16fk] {
    padding: 1.5rem;
}

.guide-intro[b-0djc0p16fk] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.guide-intro p[b-0djc0p16fk] {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.guide-section[b-0djc0p16fk] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.guide-step[b-0djc0p16fk] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid #6366f1;
    transition: all 0.2s ease;
}

.guide-step:hover[b-0djc0p16fk] {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number[b-0djc0p16fk] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.step-content h6[b-0djc0p16fk] {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

.step-content h6 i[b-0djc0p16fk] {
    margin-right: 0.5rem;
    color: #6366f1;
}

.step-content p[b-0djc0p16fk] {
    margin: 0;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}

.guide-tips[b-0djc0p16fk] {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.guide-tips h6[b-0djc0p16fk] {
    margin: 0 0 0.75rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

.guide-tips h6 i[b-0djc0p16fk] {
    margin-right: 0.5rem;
}

.guide-tips ul[b-0djc0p16fk] {
    margin: 0;
    padding-left: 1.5rem;
    color: white;
}

.guide-tips li[b-0djc0p16fk] {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.guide-tips li:last-child[b-0djc0p16fk] {
    margin-bottom: 0;
}

.guide-technique[b-0djc0p16fk] {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    padding: 1rem;
    border-radius: 10px;
    color: white;
}

.guide-technique h6[b-0djc0p16fk] {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.guide-technique h6 i[b-0djc0p16fk] {
    margin-right: 0.5rem;
}

.guide-technique p[b-0djc0p16fk] {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Dark mode styles for guide */
[data-theme="dark"] .guide-step[b-0djc0p16fk] {
    background: #2d2d2d;
    border-left-color: #8b5cf6;
}

[data-theme="dark"] .step-content h6[b-0djc0p16fk] {
    color: #e9ecef;
}

[data-theme="dark"] .step-content h6 i[b-0djc0p16fk] {
    color: #a78bfa;
}

[data-theme="dark"] .step-content p[b-0djc0p16fk] {
    color: #aaa;
}
/* /Apps/RegexTester/Pages/RegexTesterPage.razor.rz.scp.css */
/* ===================================
   PAGE HEADER
   =================================== */

.page-header[b-uphhq02j72] {
    background: linear-gradient(135deg, #2d3748, #4a5568);
    color: white;
    padding: 1.5rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.header-content[b-uphhq02j72] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.header-text[b-uphhq02j72] {
    flex: 1;
}

.page-title[b-uphhq02j72] {
    margin: 0 0 0.3rem 0;
    font-size: var(--font-xl);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-title i[b-uphhq02j72] {
    color: #f472b6; /* pink regex icon */
    font-size: 1.75rem;
}

.header-text p[b-uphhq02j72] {
    margin: 0;
    font-size: var(--font-sm);
    opacity: 0.9;
}

.page-header .btn-primary[b-uphhq02j72] {
    background: white;
    color: #4a5568;
    border: 2px solid white;
    padding: 0.625rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.page-header .btn-primary:hover[b-uphhq02j72] {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .page-header[b-uphhq02j72] {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

[data-theme="dark"] .page-header .btn-primary[b-uphhq02j72] {
    background: #3a3a3a;
    color: #e5e7eb;
    border-color: #4a4a4a;
}

[data-theme="dark"] .page-header .btn-primary:hover[b-uphhq02j72] {
    background: #4a4a4a;
}

/* ===================================
   EXISTING STYLES
   =================================== */

.regex-tester-container[b-uphhq02j72] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

.regex-header[b-uphhq02j72] {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    padding: 1rem 1.5rem;
    flex-shrink: 0;
}

.regex-header h3[b-uphhq02j72] {
    margin: 0 0 0.3rem 0;
    font-size: var(--font-xl);
    font-weight: 600;
}

.regex-header p[b-uphhq02j72] {
    margin: 0;
    font-size: var(--font-sm);
    opacity: 0.9;
}

.regex-content[b-uphhq02j72] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    flex: 1;
    overflow: hidden;
}

.regex-input-panel[b-uphhq02j72] {
    background: #f8f9fa;
    border-right: 1px solid #dee2e6;
    overflow-y: auto;
    padding: 1.5rem;
}

.regex-results-panel[b-uphhq02j72] {
    background: white;
    overflow-y: auto;
    padding: 1.5rem;
}

/* Pattern Section */
.pattern-section[b-uphhq02j72] {
    margin-bottom: 1.5rem;
}

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

.section-header label[b-uphhq02j72] {
    font-weight: 600;
    font-size: var(--font-base);
    color: #2d3748;
}

.error-badge[b-uphhq02j72] {
    background: #dc3545;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: var(--font-xs);
    font-weight: 500;
}

.pattern-input[b-uphhq02j72] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ced4da;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: var(--font-base);
    resize: vertical;
    transition: border-color 0.2s;
}

.pattern-input:focus[b-uphhq02j72] {
    outline: none;
    border-color: #667eea;
}

.pattern-input.invalid[b-uphhq02j72] {
    border-color: #dc3545;
    background-color: #fff5f5;
}

/* Options Grid */
.options-grid[b-uphhq02j72] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.option-checkbox[b-uphhq02j72] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: var(--font-sm);
    color: #4a5568;
}

.option-checkbox input[type="checkbox"][b-uphhq02j72] {
    cursor: pointer;
    width: 16px;
    height: 16px;
}

/* Test Text Section */
.test-text-section[b-uphhq02j72] {
    margin-bottom: 1.5rem;
}

.test-text-section label[b-uphhq02j72] {
    display: block;
    font-weight: 600;
    font-size: var(--font-base);
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.test-text-input[b-uphhq02j72] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ced4da;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: var(--font-base);
    resize: vertical;
    transition: border-color 0.2s;
}

.test-text-input:focus[b-uphhq02j72] {
    outline: none;
    border-color: #667eea;
}

/* Replace Section */
.replace-section[b-uphhq02j72] {
    margin-bottom: 1.5rem;
}

.replace-section label[b-uphhq02j72] {
    display: block;
    font-weight: 600;
    font-size: var(--font-base);
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.replace-controls[b-uphhq02j72] {
    display: flex;
    gap: 0.5rem;
}

.replacement-input[b-uphhq02j72] {
    flex: 1;
    padding: 0.6rem;
    border: 2px solid #ced4da;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: var(--font-base);
    transition: border-color 0.2s;
}

.replacement-input:focus[b-uphhq02j72] {
    outline: none;
    border-color: #667eea;
}

.btn-replace[b-uphhq02j72] {
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    font-size: var(--font-sm);
}

.btn-replace:hover[b-uphhq02j72] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Patterns Library & Quick Reference */
.patterns-library[b-uphhq02j72],
.quick-reference[b-uphhq02j72] {
    margin-bottom: 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
}

.library-header[b-uphhq02j72] {
    background: #4a5568;
    color: white;
    padding: 0.75rem 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: var(--font-base);
    user-select: none;
}

.library-header:hover[b-uphhq02j72] {
    background: #2d3748;
}

.toggle-icon[b-uphhq02j72] {
    font-size: var(--font-sm);
}

.patterns-list[b-uphhq02j72],
.reference-list[b-uphhq02j72] {
    max-height: 400px;
    overflow-y: auto;
    background: white;
}

.pattern-category[b-uphhq02j72],
.reference-category[b-uphhq02j72] {
    border-bottom: 1px solid #e2e8f0;
}

.pattern-category:last-child[b-uphhq02j72],
.reference-category:last-child[b-uphhq02j72] {
    border-bottom: none;
}

.category-name[b-uphhq02j72] {
    background: #e2e8f0;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: var(--font-sm);
    color: #2d3748;
}

.pattern-item[b-uphhq02j72] {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: background-color 0.2s;
}

.pattern-item:hover[b-uphhq02j72] {
    background-color: #f8fafc;
}

.pattern-name[b-uphhq02j72] {
    font-weight: 600;
    font-size: var(--font-sm);
    color: #667eea;
    margin-bottom: 0.25rem;
}

.pattern-description[b-uphhq02j72] {
    font-size: var(--font-xs);
    color: #64748b;
}

/* Reference Table */
.reference-table[b-uphhq02j72] {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--font-xs);
}

.reference-table thead[b-uphhq02j72] {
    background: #f8fafc;
}

.reference-table th[b-uphhq02j72] {
    text-align: left;
    padding: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
    font-weight: 600;
    color: #2d3748;
}

.reference-table td[b-uphhq02j72] {
    padding: 0.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.reference-table code[b-uphhq02j72] {
    background: #f1f5f9;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    color: #d946ef;
}

/* Stats Section */
.stats-section[b-uphhq02j72] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card[b-uphhq02j72] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.stat-label[b-uphhq02j72] {
    font-size: var(--font-sm);
    opacity: 0.9;
    margin-bottom: 0.3rem;
}

.stat-value[b-uphhq02j72] {
    font-size: var(--font-2xl);
    font-weight: 700;
}

/* Section Header with Action */
.section-header-with-action[b-uphhq02j72] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.section-header-with-action label[b-uphhq02j72] {
    font-weight: 600;
    font-size: var(--font-base);
    color: #2d3748;
}

/* Highlighted Text */
.highlighted-section[b-uphhq02j72] {
    margin-bottom: 1.5rem;
}

.highlighted-text[b-uphhq02j72] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: var(--font-sm);
    white-space: pre-wrap;
    word-wrap: break-word;
    max-height: 300px;
    overflow-y: auto;
}

.highlighted-text[b-uphhq02j72]  .regex-match {
    background: #fef08a;
    padding: 0.1rem 0.2rem;
    border-radius: 3px;
    font-weight: 600;
    color: #854d0e;
}

/* Replacement Result */
.replacement-section[b-uphhq02j72] {
    margin-bottom: 1.5rem;
}

.replacement-result[b-uphhq02j72] {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: var(--font-sm);
    white-space: pre-wrap;
    word-wrap: break-word;
    max-height: 300px;
    overflow-y: auto;
    color: #166534;
}

/* Buttons */
.btn-copy-small[b-uphhq02j72],
.btn-export[b-uphhq02j72] {
    padding: 0.4rem 0.8rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: var(--font-xs);
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-copy-small:hover[b-uphhq02j72],
.btn-export:hover[b-uphhq02j72] {
    background: #764ba2;
}

.export-buttons[b-uphhq02j72] {
    display: flex;
    gap: 0.5rem;
}

/* Matches Section */
.matches-section[b-uphhq02j72] {
    margin-bottom: 1.5rem;
}

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

.match-card[b-uphhq02j72] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 1rem;
}

.match-header[b-uphhq02j72] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.match-index[b-uphhq02j72] {
    font-weight: 700;
    color: #667eea;
    font-size: var(--font-base);
}

.match-position[b-uphhq02j72] {
    font-size: var(--font-xs);
    color: #64748b;
}

.match-value[b-uphhq02j72] {
    margin-bottom: 0.75rem;
    font-size: var(--font-sm);
}

.match-value code[b-uphhq02j72] {
    background: white;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #d946ef;
    border: 1px solid #e2e8f0;
}

/* Groups Section */
.groups-section[b-uphhq02j72] {
    margin-top: 0.75rem;
}

.groups-section strong[b-uphhq02j72] {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-size: var(--font-sm);
}

.groups-table[b-uphhq02j72] {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--font-xs);
    background: white;
    border-radius: 4px;
    overflow: hidden;
}

.groups-table thead[b-uphhq02j72] {
    background: #e2e8f0;
}

.groups-table th[b-uphhq02j72] {
    text-align: left;
    padding: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.groups-table td[b-uphhq02j72] {
    padding: 0.5rem;
    border-top: 1px solid #f1f5f9;
}

.groups-table code[b-uphhq02j72] {
    background: #f8fafc;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    color: #d946ef;
}

/* No Matches */
.no-matches[b-uphhq02j72] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 2rem;
    text-align: center;
    color: #64748b;
}

/* Generate Regex Section */
.generate-section[b-uphhq02j72] {
    margin-bottom: 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
}

.generate-content[b-uphhq02j72] {
    background: white;
    padding: 1rem;
}

.generate-input-area[b-uphhq02j72] {
    margin-bottom: 1rem;
}

.generate-input-area label[b-uphhq02j72] {
    display: block;
    font-weight: 600;
    font-size: var(--font-base);
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.generate-text-input[b-uphhq02j72] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ced4da;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: var(--font-base);
    resize: vertical;
    transition: border-color 0.2s;
}

.generate-text-input:focus[b-uphhq02j72] {
    outline: none;
    border-color: #f59e0b;
}

.generate-options[b-uphhq02j72] {
    margin-bottom: 1rem;
}

.generate-options label[b-uphhq02j72] {
    display: block;
    font-weight: 600;
    font-size: var(--font-sm);
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.mode-selector[b-uphhq02j72] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.mode-option[b-uphhq02j72] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: var(--font-sm);
    color: #4a5568;
}

.mode-option input[type="radio"][b-uphhq02j72] {
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.btn-generate[b-uphhq02j72] {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: var(--font-base);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 1rem;
}

.btn-generate:hover[b-uphhq02j72] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.generation-result[b-uphhq02j72] {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #86efac;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.generation-error[b-uphhq02j72] {
    background: #fef2f2;
    border: 2px solid #fca5a5;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.result-header[b-uphhq02j72] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.result-badge[b-uphhq02j72] {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: var(--font-xs);
    font-weight: 600;
}

.result-badge.success[b-uphhq02j72] {
    background: #16a34a;
    color: white;
}

.result-badge.error[b-uphhq02j72] {
    background: #dc2626;
    color: white;
}

.btn-apply[b-uphhq02j72] {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: var(--font-sm);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-apply:hover[b-uphhq02j72] {
    transform: translateY(-2px);
}

.result-description[b-uphhq02j72] {
    font-size: var(--font-sm);
    color: #166534;
    margin-bottom: 0.75rem;
}

.detected-types[b-uphhq02j72] {
    font-weight: 600;
    color: #15803d;
}

.result-pattern[b-uphhq02j72] {
    background: white;
    border: 1px solid #86efac;
    border-radius: 4px;
    padding: 0.75rem;
}

.result-pattern code[b-uphhq02j72] {
    font-family: 'Courier New', monospace;
    font-size: var(--font-base);
    color: #d946ef;
    word-break: break-all;
}

.generation-info[b-uphhq02j72] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 1rem;
    font-size: var(--font-xs);
}

.generation-info strong[b-uphhq02j72] {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.generation-info ul[b-uphhq02j72] {
    margin: 0;
    padding-left: 1.5rem;
}

.generation-info li[b-uphhq02j72] {
    margin-bottom: 0.3rem;
    color: #64748b;
}

/* Toast Notification */
.toast-notification[b-uphhq02j72] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: var(--font-sm);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    animation: slideInRight-b-uphhq02j72 0.3s ease-out;
    min-width: 250px;
}

.toast-notification.success[b-uphhq02j72] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.toast-notification.error[b-uphhq02j72] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

@keyframes slideInRight-b-uphhq02j72 {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile Responsiveness */
@media (max-width: 1199px) {
    .regex-content[b-uphhq02j72] {
        grid-template-columns: 1fr;
    }

    .regex-input-panel[b-uphhq02j72] {
        border-right: none;
        border-bottom: 1px solid #dee2e6;
    }

    .stats-section[b-uphhq02j72] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .regex-header[b-uphhq02j72] {
        padding: 0.75rem 1rem;
    }

    .regex-header h3[b-uphhq02j72] {
        font-size: var(--font-lg);
    }

    .regex-input-panel[b-uphhq02j72],
    .regex-results-panel[b-uphhq02j72] {
        padding: 1rem;
    }

    .options-grid[b-uphhq02j72] {
        grid-template-columns: 1fr;
    }

    .replace-controls[b-uphhq02j72] {
        flex-direction: column;
    }

    .btn-replace[b-uphhq02j72] {
        width: 100%;
    }

    .stats-section[b-uphhq02j72] {
        grid-template-columns: 1fr;
    }

    .match-header[b-uphhq02j72] {
        flex-direction: column;
        align-items: flex-start;
    }

    .export-buttons[b-uphhq02j72] {
        flex-direction: column;
        width: 100%;
    }

    .btn-export[b-uphhq02j72] {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .regex-header h3[b-uphhq02j72] {
        font-size: var(--font-md);
    }

    .regex-header p[b-uphhq02j72] {
        font-size: var(--font-xs);
    }

    .section-header-with-action[b-uphhq02j72] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .groups-table[b-uphhq02j72] {
        font-size: 10px;
    }

    .groups-table th[b-uphhq02j72],
    .groups-table td[b-uphhq02j72] {
        padding: 0.3rem;
    }

    .toast-notification[b-uphhq02j72] {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        min-width: auto;
    }
}

/* ===================================
   QUICK GUIDE MODAL
   =================================== */

.modal-overlay[b-uphhq02j72] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn-b-uphhq02j72 0.2s ease;
}

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

@keyframes scaleIn-b-uphhq02j72 {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-container.guide-modal[b-uphhq02j72] {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn-b-uphhq02j72 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .modal-container.guide-modal[b-uphhq02j72] {
    background: #2d2d2d;
}

.guide-modal .modal-header[b-uphhq02j72] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-modal .modal-header h5[b-uphhq02j72] {
    margin: 0;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guide-modal .btn-close[b-uphhq02j72] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guide-modal .btn-close:hover[b-uphhq02j72] {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.guide-modal .modal-body[b-uphhq02j72] {
    padding: 2rem;
    max-height: calc(85vh - 180px);
    overflow-y: auto;
}

.guide-body[b-uphhq02j72] {
    padding: 0;
}

.guide-intro[b-uphhq02j72] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.guide-intro p[b-uphhq02j72] {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.guide-section[b-uphhq02j72] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.guide-step[b-uphhq02j72] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid #6366f1;
    transition: all 0.2s ease;
}

[data-theme="dark"] .guide-step[b-uphhq02j72] {
    background: #2d2d2d;
    border-left-color: #8b5cf6;
}

.guide-step:hover[b-uphhq02j72] {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number[b-uphhq02j72] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.step-content[b-uphhq02j72] {
    flex: 1;
}

.step-content h6[b-uphhq02j72] {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .step-content h6[b-uphhq02j72] {
    color: #e5e7eb;
}

.step-content h6 i[b-uphhq02j72] {
    font-size: 1.1rem;
}

.step-content p[b-uphhq02j72] {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

[data-theme="dark"] .step-content p[b-uphhq02j72] {
    color: #9ca3af;
}

.guide-tips[b-uphhq02j72] {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1.25rem;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
}

[data-theme="dark"] .guide-tips[b-uphhq02j72] {
    background: linear-gradient(135deg, #78350f, #92400e);
    border-left-color: #fbbf24;
}

.guide-tips h6[b-uphhq02j72] {
    margin: 0 0 0.75rem 0;
    font-weight: 700;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .guide-tips h6[b-uphhq02j72] {
    color: #fbbf24;
}

.guide-tips h6 i[b-uphhq02j72] {
    color: #f59e0b;
}

[data-theme="dark"] .guide-tips h6 i[b-uphhq02j72] {
    color: #fbbf24;
}

.guide-tips ul[b-uphhq02j72] {
    margin: 0;
    padding-left: 1.5rem;
}

.guide-tips li[b-uphhq02j72] {
    color: #78350f;
    font-size: 0.9rem;
    line-height: 1.8;
}

[data-theme="dark"] .guide-tips li[b-uphhq02j72] {
    color: #fde68a;
}

.guide-tips strong[b-uphhq02j72] {
    color: #92400e;
    font-weight: 600;
}

[data-theme="dark"] .guide-tips strong[b-uphhq02j72] {
    color: #fbbf24;
}

.guide-modal .modal-footer[b-uphhq02j72] {
    padding: 1.5rem 2rem;
    background: #f9fafb;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    border-top: 2px solid #e5e7eb;
}

[data-theme="dark"] .guide-modal .modal-footer[b-uphhq02j72] {
    background: #1a1a1a;
    border-top-color: #444;
}

.guide-modal .btn-secondary[b-uphhq02j72] {
    padding: 0.75rem 1.5rem;
    border: 2px solid #6366f1;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #6366f1;
}

[data-theme="dark"] .guide-modal .btn-secondary[b-uphhq02j72] {
    background: #2d2d2d;
    color: #818cf8;
    border-color: #818cf8;
}

.guide-modal .btn-secondary:hover[b-uphhq02j72] {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

[data-theme="dark"] .guide-modal .btn-secondary:hover[b-uphhq02j72] {
    background: #818cf8;
    color: white;
}

/* Text color helpers */
.text-success[b-uphhq02j72] {
    color: #10b981;
}

.text-primary[b-uphhq02j72] {
    color: #3b82f6;
}

.text-info[b-uphhq02j72] {
    color: #06b6d4;
}

.text-warning[b-uphhq02j72] {
    color: #f59e0b;
}

/* Mobile responsiveness for guide */
@media (max-width: 768px) {
    .guide-modal .modal-container[b-uphhq02j72] {
        max-width: 95%;
        max-height: 90vh;
    }

    .guide-step[b-uphhq02j72] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .step-number[b-uphhq02j72] {
        align-self: flex-start;
    }
}
/* /Apps/SwotAnalysis/Pages/SwotAnalysisPage.razor.rz.scp.css */
.swot-container[b-6u6wsghun6] {
    padding: 0;
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* Header */
.swot-header[b-6u6wsghun6] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    flex-shrink: 0;
}

.header-content h1.app-title[b-6u6wsghun6] {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.header-content .app-subtitle[b-6u6wsghun6] {
    margin: 0.5rem 0 0 0;
    opacity: 0.95;
    font-size: 1rem;
}

/* Controls Bar */
.controls-bar[b-6u6wsghun6] {
    background: white;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-shrink: 0;
}

.controls-left[b-6u6wsghun6], .controls-right[b-6u6wsghun6] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.controls-bar .btn[b-6u6wsghun6] {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s;
}

.controls-bar .btn:hover[b-6u6wsghun6] {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Analysis Info */
.analysis-info[b-6u6wsghun6] {
    background: white;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.info-row[b-6u6wsghun6] {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

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

.info-item[b-6u6wsghun6] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-item.full-width[b-6u6wsghun6] {
    flex: 1 1 100%;
}

.info-item label[b-6u6wsghun6] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.info-item .form-control[b-6u6wsghun6],
.info-item .form-select[b-6u6wsghun6] {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    border: 1px solid #cbd5e0;
}

/* Statistics Bar */
.statistics-bar[b-6u6wsghun6] {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.stat-item[b-6u6wsghun6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    min-width: 100px;
}

.stat-item i[b-6u6wsghun6] {
    font-size: 1.25rem;
}

.stat-value[b-6u6wsghun6] {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label[b-6u6wsghun6] {
    font-size: 0.75rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-strengths i[b-6u6wsghun6] { color: #48bb78; }
.stat-weaknesses i[b-6u6wsghun6] { color: #f6ad55; }
.stat-opportunities i[b-6u6wsghun6] { color: #4299e1; }
.stat-threats i[b-6u6wsghun6] { color: #fc8181; }
.stat-total i[b-6u6wsghun6] { color: #9f7aea; }

/* SWOT Grid */
.swot-grid[b-6u6wsghun6] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    flex: 1;
    min-height: 600px;
    overflow: auto;
    background: #f7fafc;
}

/* Quadrants */
.quadrant[b-6u6wsghun6] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.quadrant:hover[b-6u6wsghun6] {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.strengths-quadrant[b-6u6wsghun6] {
    border-color: #48bb78;
}

.weaknesses-quadrant[b-6u6wsghun6] {
    border-color: #f6ad55;
}

.opportunities-quadrant[b-6u6wsghun6] {
    border-color: #4299e1;
}

.threats-quadrant[b-6u6wsghun6] {
    border-color: #fc8181;
}

/* Quadrant Header */
.quadrant-header[b-6u6wsghun6] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.strengths-quadrant .quadrant-header[b-6u6wsghun6] {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.weaknesses-quadrant .quadrant-header[b-6u6wsghun6] {
    background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
}

.opportunities-quadrant .quadrant-header[b-6u6wsghun6] {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
}

.threats-quadrant .quadrant-header[b-6u6wsghun6] {
    background: linear-gradient(135deg, #fc8181 0%, #f56565 100%);
}

.quadrant-header h3[b-6u6wsghun6] {
    margin: 0;
    flex: 1;
    font-size: 1.1rem;
}

.quadrant-header .item-count[b-6u6wsghun6] {
    background: rgba(255,255,255,0.25);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Quadrant Content */
.quadrant-content[b-6u6wsghun6] {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    overflow: hidden;
}

/* Add Item Section */
.add-item-section[b-6u6wsghun6] {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.add-item-section .form-control[b-6u6wsghun6] {
    flex: 1;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

.add-item-section .priority-select[b-6u6wsghun6] {
    width: 130px;
    font-size: 0.75rem;
    padding: 0.5rem;
    border-radius: 6px;
}

.add-item-section .btn[b-6u6wsghun6] {
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

/* Items List */
.items-list[b-6u6wsghun6] {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.swot-item[b-6u6wsghun6] {
    background: #f7fafc;
    border-left: 4px solid #cbd5e0;
    border-radius: 6px;
    padding: 0.75rem;
    transition: all 0.2s;
}

.swot-item:hover[b-6u6wsghun6] {
    background: #edf2f7;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.swot-item.priority-1[b-6u6wsghun6] { border-left-color: #cbd5e0; }
.swot-item.priority-2[b-6u6wsghun6] { border-left-color: #90cdf4; }
.swot-item.priority-3[b-6u6wsghun6] { border-left-color: #4299e1; }
.swot-item.priority-4[b-6u6wsghun6] { border-left-color: #f6ad55; }
.swot-item.priority-5[b-6u6wsghun6] { border-left-color: #fc8181; }

.item-header[b-6u6wsghun6] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.priority-badge[b-6u6wsghun6] {
    background: #e2e8f0;
    color: #4a5568;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.item-text[b-6u6wsghun6] {
    flex: 1;
    font-size: 0.875rem;
    color: #2d3748;
    font-weight: 500;
}

.btn-delete[b-6u6wsghun6] {
    background: transparent;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-delete:hover[b-6u6wsghun6] {
    background: #fed7d7;
    color: #c53030;
}

.item-description[b-6u6wsghun6] {
    margin-top: 0.5rem;
    padding-left: 2.5rem;
    font-size: 0.8rem;
    color: #718096;
    font-style: italic;
}

/* Empty State */
.empty-state[b-6u6wsghun6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #a0aec0;
    text-align: center;
}

.empty-state i[b-6u6wsghun6] {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.empty-state p[b-6u6wsghun6] {
    margin: 0;
    font-size: 0.875rem;
}

/* Notes Section */
.notes-section[b-6u6wsghun6] {
    background: white;
    padding: 1rem 1.5rem;
    border-top: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.notes-header[b-6u6wsghun6] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.notes-header h4[b-6u6wsghun6] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
}

.notes-header i[b-6u6wsghun6] {
    color: #667eea;
}

.notes-section textarea[b-6u6wsghun6] {
    resize: vertical;
    font-size: 0.875rem;
}

/* Modals */
.modal-backdrop[b-6u6wsghun6] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
}

.modal[b-6u6wsghun6] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog[b-6u6wsghun6] {
    position: relative;
    margin: 1.75rem auto;
    max-width: 800px;
}

.modal-content[b-6u6wsghun6] {
    position: relative;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header[b-6u6wsghun6] {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header .modal-title[b-6u6wsghun6] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-header .btn-close[b-6u6wsghun6] {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.modal-header .btn-close:hover[b-6u6wsghun6] {
    opacity: 1;
}

.modal-body[b-6u6wsghun6] {
    padding: 1.5rem;
}

.templates-grid[b-6u6wsghun6] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    max-height: 60vh;
    overflow-y: auto;
}

.template-card[b-6u6wsghun6] {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.template-card:hover[b-6u6wsghun6] {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

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

.template-header h6[b-6u6wsghun6] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
}

.template-description[b-6u6wsghun6] {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 0.75rem;
}

.template-preview[b-6u6wsghun6] {
    background: #f7fafc;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
}

.template-preview ul[b-6u6wsghun6] {
    margin: 0.25rem 0 0 0;
    padding-left: 1.25rem;
}

.saved-analyses-list[b-6u6wsghun6] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 60vh;
    overflow-y: auto;
}

.saved-analysis-card[b-6u6wsghun6] {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
}

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

.saved-header h6[b-6u6wsghun6] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.saved-description[b-6u6wsghun6] {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 0.75rem;
}

.saved-stats[b-6u6wsghun6] {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.saved-stats span[b-6u6wsghun6] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.saved-meta[b-6u6wsghun6] {
    font-size: 0.75rem;
    color: #a0aec0;
    margin-bottom: 0.75rem;
}

.saved-actions[b-6u6wsghun6] {
    display: flex;
    gap: 0.5rem;
}

/* Persisted Data Indicator */
.persisted-data[b-6u6wsghun6] {
    background-color: #f0f4ff !important;
    border-left: 3px solid #4299e1 !important;
}

[data-theme="dark"] .persisted-data[b-6u6wsghun6] {
    background-color: #1a1f3a !important;
    border-left: 3px solid #63b3ed !important;
}

/* Dark Mode */
[data-theme="dark"] .swot-container[b-6u6wsghun6] {
    background: #1a1a1a;
}

[data-theme="dark"] .controls-bar[b-6u6wsghun6],
[data-theme="dark"] .analysis-info[b-6u6wsghun6],
[data-theme="dark"] .notes-section[b-6u6wsghun6] {
    background: #2d2d2d;
    border-color: #3a3a3a;
}

[data-theme="dark"] .statistics-bar[b-6u6wsghun6] {
    background: linear-gradient(135deg, #2d2d2d 0%, #252525 100%);
    border-color: #3a3a3a;
}

[data-theme="dark"] .stat-item[b-6u6wsghun6] {
    background: #1a1a1a;
}

[data-theme="dark"] .swot-grid[b-6u6wsghun6] {
    background: #1a1a1a;
}

[data-theme="dark"] .quadrant[b-6u6wsghun6] {
    background: #2d2d2d;
}

[data-theme="dark"] .swot-item[b-6u6wsghun6] {
    background: #252525;
}

[data-theme="dark"] .swot-item:hover[b-6u6wsghun6] {
    background: #2d2d2d;
}

[data-theme="dark"] .info-item label[b-6u6wsghun6],
[data-theme="dark"] .stat-label[b-6u6wsghun6] {
    color: #a0aec0;
}

[data-theme="dark"] .item-text[b-6u6wsghun6] {
    color: #e2e8f0;
}

[data-theme="dark"] .template-card[b-6u6wsghun6],
[data-theme="dark"] .saved-analysis-card[b-6u6wsghun6] {
    background: #2d2d2d;
    border-color: #3a3a3a;
}

[data-theme="dark"] .template-preview[b-6u6wsghun6] {
    background: #252525;
}

[data-theme="dark"] .modal-content[b-6u6wsghun6] {
    background-color: #2d2d2d;
    color: #e2e8f0;
}

[data-theme="dark"] .modal-header[b-6u6wsghun6] {
    border-bottom-color: #3a3a3a;
}

[data-theme="dark"] .modal-header .modal-title[b-6u6wsghun6] {
    color: #e2e8f0;
}

[data-theme="dark"] .template-header h6[b-6u6wsghun6],
[data-theme="dark"] .saved-header h6[b-6u6wsghun6] {
    color: #e2e8f0;
}

[data-theme="dark"] .template-description[b-6u6wsghun6],
[data-theme="dark"] .saved-description[b-6u6wsghun6] {
    color: #a0aec0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .swot-container[b-6u6wsghun6] {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
    }

    .swot-header[b-6u6wsghun6] {
        padding: 1.5rem 1rem;
    }

    .header-content h1.app-title[b-6u6wsghun6] {
        font-size: 1.5rem;
    }

    .header-content .app-subtitle[b-6u6wsghun6] {
        font-size: 0.875rem;
    }

    .controls-bar[b-6u6wsghun6] {
        padding: 1rem;
    }

    .controls-left[b-6u6wsghun6], .controls-right[b-6u6wsghun6] {
        flex: 1 1 100%;
        justify-content: center;
    }

    .analysis-info[b-6u6wsghun6] {
        padding: 1rem;
    }

    .info-row[b-6u6wsghun6] {
        flex-direction: column;
    }

    .statistics-bar[b-6u6wsghun6] {
        padding: 1rem;
        flex-wrap: wrap;
    }

    .stat-item[b-6u6wsghun6] {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 120px;
    }

    .swot-grid[b-6u6wsghun6] {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        padding: 1rem;
        gap: 1rem;
        overflow-y: visible;
        height: auto;
    }

    .quadrant[b-6u6wsghun6] {
        min-height: 300px;
    }

    .quadrant-content[b-6u6wsghun6] {
        overflow-y: visible;
    }

    .items-list[b-6u6wsghun6] {
        max-height: 200px;
    }

    .notes-section[b-6u6wsghun6] {
        padding: 1rem;
    }

    .templates-grid[b-6u6wsghun6] {
        grid-template-columns: 1fr;
    }

    .add-item-section[b-6u6wsghun6] {
        flex-wrap: wrap;
    }

    .add-item-section .priority-select[b-6u6wsghun6] {
        width: 100px;
    }
}

/* ===================================
   QUICK GUIDE MODAL
   =================================== */

.modal-overlay[b-6u6wsghun6] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn-b-6u6wsghun6 0.2s ease;
}

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

@keyframes scaleIn-b-6u6wsghun6 {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-container.guide-modal[b-6u6wsghun6] {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn-b-6u6wsghun6 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .modal-container.guide-modal[b-6u6wsghun6] {
    background: #2d2d2d;
}

.guide-modal .modal-header[b-6u6wsghun6] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-modal .modal-header h5[b-6u6wsghun6] {
    margin: 0;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guide-modal .btn-close[b-6u6wsghun6] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guide-modal .btn-close:hover[b-6u6wsghun6] {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.guide-modal .modal-body[b-6u6wsghun6] {
    padding: 2rem;
    max-height: calc(85vh - 180px);
    overflow-y: auto;
}

.guide-modal .modal-footer[b-6u6wsghun6] {
    padding: 1.5rem 2rem;
    background: #f9fafb;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    border-top: 2px solid #e5e7eb;
}

[data-theme="dark"] .guide-modal .modal-footer[b-6u6wsghun6] {
    background: #1a1a1a;
    border-top-color: #444;
}

.guide-modal .btn-secondary[b-6u6wsghun6] {
    padding: 0.75rem 1.5rem;
    border: 2px solid #6366f1;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #6366f1;
}

[data-theme="dark"] .guide-modal .btn-secondary[b-6u6wsghun6] {
    background: #2d2d2d;
    color: #818cf8;
    border-color: #818cf8;
}

.guide-modal .btn-secondary:hover[b-6u6wsghun6] {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

[data-theme="dark"] .guide-modal .btn-secondary:hover[b-6u6wsghun6] {
    background: #818cf8;
    color: white;
}

.guide-body[b-6u6wsghun6] {
    padding: 1.5rem;
}

.guide-intro[b-6u6wsghun6] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.guide-intro p[b-6u6wsghun6] {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.guide-section[b-6u6wsghun6] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.guide-step[b-6u6wsghun6] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid #6366f1;
    transition: all 0.2s ease;
}

[data-theme="dark"] .guide-step[b-6u6wsghun6] {
    background: #2d2d2d;
    border-left-color: #8b5cf6;
}

.guide-step:hover[b-6u6wsghun6] {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number[b-6u6wsghun6] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.step-content[b-6u6wsghun6] {
    flex: 1;
}

.step-content h6[b-6u6wsghun6] {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .step-content h6[b-6u6wsghun6] {
    color: #e5e7eb;
}

.step-content h6 i[b-6u6wsghun6] {
    font-size: 1.1rem;
}

.step-content p[b-6u6wsghun6] {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

[data-theme="dark"] .step-content p[b-6u6wsghun6] {
    color: #9ca3af;
}

.guide-tips[b-6u6wsghun6] {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1.25rem;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
}

[data-theme="dark"] .guide-tips[b-6u6wsghun6] {
    background: linear-gradient(135deg, #78350f, #92400e);
    border-left-color: #fbbf24;
}

.guide-tips h6[b-6u6wsghun6] {
    margin: 0 0 0.75rem 0;
    font-weight: 700;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .guide-tips h6[b-6u6wsghun6] {
    color: #fbbf24;
}

.guide-tips h6 i[b-6u6wsghun6] {
    color: #f59e0b;
}

[data-theme="dark"] .guide-tips h6 i[b-6u6wsghun6] {
    color: #fbbf24;
}

.guide-tips ul[b-6u6wsghun6] {
    margin: 0;
    padding-left: 1.5rem;
}

.guide-tips li[b-6u6wsghun6] {
    color: #78350f;
    font-size: 0.9rem;
    line-height: 1.8;
}

[data-theme="dark"] .guide-tips li[b-6u6wsghun6] {
    color: #fde68a;
}

.guide-tips strong[b-6u6wsghun6] {
    color: #92400e;
    font-weight: 600;
}

[data-theme="dark"] .guide-tips strong[b-6u6wsghun6] {
    color: #fbbf24;
}

/* Text color helpers */
.text-success[b-6u6wsghun6] {
    color: #10b981;
}

.text-primary[b-6u6wsghun6] {
    color: #3b82f6;
}

.text-info[b-6u6wsghun6] {
    color: #06b6d4;
}

.text-warning[b-6u6wsghun6] {
    color: #f59e0b;
}

.text-danger[b-6u6wsghun6] {
    color: #ef4444;
}

/* Mobile responsiveness for guide */
@media (max-width: 768px) {
    .guide-modal[b-6u6wsghun6] {
        max-width: 95%;
        max-height: 90vh;
    }

    .guide-step[b-6u6wsghun6] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .step-number[b-6u6wsghun6] {
        align-self: flex-start;
    }
}
/* /Apps/TestDataGenerator/Pages/TestDataGeneratorPage.razor.rz.scp.css */
.test-data-generator-container[b-45jxg6668s] {
    display: flex;
    gap: 20px;
    height: calc(100vh - 100px);
    padding: 20px;
}

.settings-panel[b-45jxg6668s] {
    flex: 0 0 450px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.results-panel[b-45jxg6668s] {
    flex: 1;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.panel-header[b-45jxg6668s] {
    background: #2d3748;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 3px solid #4a5568;
}

.panel-header i[b-45jxg6668s] {
    font-size: 1.2rem;
}

.panel-header h5[b-45jxg6668s] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.settings-content[b-45jxg6668s] {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.results-content[b-45jxg6668s] {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.form-group[b-45jxg6668s] {
    margin-bottom: 15px;
}

.form-group label[b-45jxg6668s] {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.85rem;
}

.form-control[b-45jxg6668s],
.form-select[b-45jxg6668s] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: border-color 0.2s;
}

.form-control:focus[b-45jxg6668s],
.form-select:focus[b-45jxg6668s] {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.form-check[b-45jxg6668s] {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.form-check-input[b-45jxg6668s] {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    cursor: pointer;
}

.form-check-label[b-45jxg6668s] {
    cursor: pointer;
    font-size: 0.85rem;
    color: #4a5568;
    user-select: none;
}

.field-selection[b-45jxg6668s] {
    background: #f7fafc;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    margin-bottom: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.section-label[b-45jxg6668s] {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.85rem;
}

.helper-text[b-45jxg6668s] {
    font-size: 0.75rem;
    color: #718096;
    margin-top: 0;
    margin-bottom: 10px;
}

.btn-generate[b-45jxg6668s] {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-generate:hover[b-45jxg6668s] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-generate:active[b-45jxg6668s] {
    transform: translateY(0);
}

.results-toolbar[b-45jxg6668s] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
}

.results-info[b-45jxg6668s] {
    display: flex;
    gap: 10px;
}

.results-actions[b-45jxg6668s] {
    display: flex;
    gap: 8px;
}

.output-container[b-45jxg6668s] {
    flex: 1;
    overflow: auto;
    padding: 20px;
    background: #1e293b;
}

.output-text[b-45jxg6668s] {
    margin: 0;
    color: #e2e8f0;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.empty-state[b-45jxg6668s] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
    text-align: center;
}

.empty-icon[b-45jxg6668s] {
    font-size: 4rem;
    color: #cbd5e0;
    margin-bottom: 20px;
}

.empty-state h5[b-45jxg6668s] {
    color: #2d3748;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.empty-state p[b-45jxg6668s] {
    color: #718096;
    margin-bottom: 30px;
    max-width: 500px;
}

.features-list[b-45jxg6668s] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 600px;
}

.feature-item[b-45jxg6668s] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f7fafc;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #4a5568;
}

.feature-item i[b-45jxg6668s] {
    color: #48bb78;
    font-size: 1rem;
}

.copy-feedback[b-45jxg6668s] {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #48bb78;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    animation: slideIn-b-45jxg6668s 0.3s ease-out;
    z-index: 1000;
}

@keyframes slideIn-b-45jxg6668s {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.text-muted[b-45jxg6668s] {
    font-size: 0.75rem;
    color: #718096;
    margin-top: 3px;
}

.badge[b-45jxg6668s] {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bg-success[b-45jxg6668s] {
    background-color: #48bb78;
    color: white;
}

.bg-info[b-45jxg6668s] {
    background-color: #4299e1;
    color: white;
}

.bg-secondary[b-45jxg6668s] {
    background-color: #718096;
    color: white;
}

.btn-sm[b-45jxg6668s] {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline-primary[b-45jxg6668s] {
    border: 1px solid #4299e1;
    color: #4299e1;
    background: transparent;
}

.btn-outline-primary:hover[b-45jxg6668s] {
    background: #4299e1;
    color: white;
}

.btn-outline-success[b-45jxg6668s] {
    border: 1px solid #48bb78;
    color: #48bb78;
    background: transparent;
}

.btn-outline-success:hover[b-45jxg6668s] {
    background: #48bb78;
    color: white;
}

.btn-outline-danger[b-45jxg6668s] {
    border: 1px solid #f56565;
    color: #f56565;
    background: transparent;
}

.btn-outline-danger:hover[b-45jxg6668s] {
    background: #f56565;
    color: white;
}

.alert-warning[b-45jxg6668s] {
    background-color: #fef3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Custom Fields Styles */
.custom-fields-container[b-45jxg6668s] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.custom-field-row[b-45jxg6668s] {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr auto;
    gap: 10px;
    align-items: start;
    background: white;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.field-name-input[b-45jxg6668s] {
    font-size: 0.85rem;
    min-height: 38px;
    max-height: 120px;
    height: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: pre-wrap;
    resize: vertical;
    overflow-y: auto;
    font-family: inherit;
    line-height: 1.5;
    padding: 8px 12px;
}

.field-type-select[b-45jxg6668s] {
    font-size: 0.85rem;
    white-space: normal;
    word-wrap: break-word;
    min-height: 38px;
    height: auto;
    padding-right: 30px;
}

.field-type-select option[b-45jxg6668s] {
    white-space: normal;
    word-wrap: break-word;
    padding: 4px 8px;
}

.custom-field-row .btn-danger[b-45jxg6668s] {
    padding: 6px 10px;
    background-color: #f56565;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 0;
    align-self: start;
    min-height: 38px;
}

.custom-field-row .btn-danger:hover[b-45jxg6668s] {
    background-color: #e53e3e;
}

.add-field-btn[b-45jxg6668s] {
    margin-top: 5px;
    width: 100%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.85rem;
}

/* Persisted Data Visual Indicator */
.persisted-data[b-45jxg6668s] {
    background-color: #f0f4ff !important;
    border-left: 3px solid #4299e1 !important;
    transition: background-color 0.3s, border-color 0.3s;
}

[data-theme="dark"] .persisted-data[b-45jxg6668s] {
    background-color: #1a1f3a !important;
    border-left: 3px solid #4299e1 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .test-data-generator-container[b-45jxg6668s] {
        flex-direction: column;
        height: auto;
        min-height: calc(100vh - 100px);
    }

    .settings-panel[b-45jxg6668s] {
        flex: 0 0 auto;
    }

    .results-panel[b-45jxg6668s] {
        flex: 1;
        min-height: 500px;
    }

    .features-list[b-45jxg6668s] {
        grid-template-columns: 1fr;
    }

    .results-toolbar[b-45jxg6668s] {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .results-actions[b-45jxg6668s] {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .test-data-generator-container[b-45jxg6668s] {
        padding: 10px;
        gap: 10px;
    }

    .settings-content[b-45jxg6668s],
    .output-container[b-45jxg6668s] {
        padding: 15px;
    }

    .panel-header[b-45jxg6668s] {
        padding: 12px 15px;
    }

    .copy-feedback[b-45jxg6668s] {
        bottom: 15px;
        right: 15px;
        left: 15px;
    }

    .custom-field-row[b-45jxg6668s] {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .field-type-select[b-45jxg6668s] {
        height: auto;
    }

    .custom-field-row .btn-danger[b-45jxg6668s] {
        width: 100%;
    }
}
/* Guide Modal Styles */

.modal-overlay[b-45jxg6668s] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn-b-45jxg6668s 0.2s ease;
}

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

@keyframes scaleIn-b-45jxg6668s {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-container.guide-modal[b-45jxg6668s] {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn-b-45jxg6668s 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .modal-container.guide-modal[b-45jxg6668s] {
    background: #2d2d2d;
}

.guide-modal .modal-header[b-45jxg6668s] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-modal .modal-header h5[b-45jxg6668s] {
    margin: 0;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guide-modal .btn-close[b-45jxg6668s] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guide-modal .btn-close:hover[b-45jxg6668s] {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.guide-modal .modal-body[b-45jxg6668s] {
    padding: 2rem;
    max-height: calc(85vh - 180px);
    overflow-y: auto;
}

.guide-modal .modal-footer[b-45jxg6668s] {
    padding: 1.5rem 2rem;
    background: #f9fafb;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    border-top: 2px solid #e5e7eb;
}

[data-theme="dark"] .guide-modal .modal-footer[b-45jxg6668s] {
    background: #1a1a1a;
    border-top-color: #444;
}

.guide-modal .btn-secondary[b-45jxg6668s] {
    padding: 0.75rem 1.5rem;
    border: 2px solid #6366f1;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #6366f1;
}

[data-theme="dark"] .guide-modal .btn-secondary[b-45jxg6668s] {
    background: #2d2d2d;
    color: #818cf8;
    border-color: #818cf8;
}

.guide-modal .btn-secondary:hover[b-45jxg6668s] {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

[data-theme="dark"] .guide-modal .btn-secondary:hover[b-45jxg6668s] {
    background: #818cf8;
    color: white;
}

.guide-body[b-45jxg6668s] {
    padding: 1.5rem;
}

.guide-intro[b-45jxg6668s] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.guide-intro p[b-45jxg6668s] {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.guide-section[b-45jxg6668s] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guide-step[b-45jxg6668s] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid #6366f1;
    transition: all 0.2s ease;
}

[data-theme="dark"] .guide-step[b-45jxg6668s] {
    background: #2d2d2d;
    border-left-color: #8b5cf6;
}

.guide-step:hover[b-45jxg6668s] {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number[b-45jxg6668s] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-content[b-45jxg6668s] {
    flex: 1;
}

.step-content h6[b-45jxg6668s] {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    color: #1f2937;
    font-weight: 600;
}

[data-theme="dark"] .step-content h6[b-45jxg6668s] {
    color: #e9ecef;
}

.step-content p[b-45jxg6668s] {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

[data-theme="dark"] .step-content p[b-45jxg6668s] {
    color: #adb5bd;
}

.guide-tips[b-45jxg6668s] {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

[data-theme="dark"] .guide-tips[b-45jxg6668s] {
    background: linear-gradient(135deg, #78350f, #92400e);
    border-left-color: #fbbf24;
}

.guide-tips h6[b-45jxg6668s] {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    color: #92400e;
    font-weight: 700;
}

[data-theme="dark"] .guide-tips h6[b-45jxg6668s] {
    color: #fbbf24;
}

.guide-tips ul[b-45jxg6668s] {
    margin: 0;
    padding-left: 1.25rem;
}

.guide-tips li[b-45jxg6668s] {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #78350f;
    line-height: 1.5;
}

[data-theme="dark"] .guide-tips li[b-45jxg6668s] {
    color: #fde68a;
}

.guide-tips li:last-child[b-45jxg6668s] {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .guide-modal[b-45jxg6668s] {
        max-width: 95%;
        max-height: 90vh;
    }

    .guide-step[b-45jxg6668s] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .step-number[b-45jxg6668s] {
        align-self: flex-start;
    }
}
/* /Apps/TextDiffChecker/Pages/TextDiffCheckerPage.razor.rz.scp.css */
.diff-container[b-d42ej2ae10] {
    min-height: 100vh;
    background: #f5f7fa;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.diff-header[b-d42ej2ae10] {
    background: #2d3748;
    text-align: center;
    color: white;
    padding: 2rem;
    margin-bottom: 0;
}

.diff-title[b-d42ej2ae10] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.diff-subtitle[b-d42ej2ae10] {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.diff-controls[b-d42ej2ae10] {
    background: white;
    border-radius: 0;
    padding: 1.5rem 2rem;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-start;
    border-bottom: 1px solid #e2e8f0;
}

.control-group[b-d42ej2ae10] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.control-label[b-d42ej2ae10] {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-group[b-d42ej2ae10] {
    display: flex;
    gap: 0.5rem;
}

.btn[b-d42ej2ae10] {
    padding: 0.5rem 1rem;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn:hover[b-d42ej2ae10] {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-1px);
}

.btn-active[b-d42ej2ae10] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.btn-primary[b-d42ej2ae10] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.btn-primary:hover[b-d42ej2ae10] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-secondary[b-d42ej2ae10] {
    background: white;
    color: #4a5568;
}

.btn-sm[b-d42ej2ae10] {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.form-select[b-d42ej2ae10] {
    padding: 0.5rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-weight: 500;
    min-width: 180px;
}

.form-select:focus[b-d42ej2ae10] {
    outline: none;
    border-color: #667eea;
}

.options-container[b-d42ej2ae10] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.checkbox-label[b-d42ej2ae10] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    color: #4a5568;
}

.checkbox-label input[type="checkbox"][b-d42ej2ae10] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #667eea;
}

.action-bar[b-d42ej2ae10] {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0;
    padding: 1rem 2rem;
    flex-wrap: wrap;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.input-section[b-d42ej2ae10] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 0;
    background: white;
}

.input-panel[b-d42ej2ae10] {
    background: white;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 300px;
    border-right: 1px solid #e2e8f0;
}

.input-panel:last-child[b-d42ej2ae10] {
    border-right: none;
}

.panel-header[b-d42ej2ae10] {
    background: #4a5568;
    color: white;
    padding: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-title[b-d42ej2ae10] {
    font-size: 1rem;
}

.panel-actions[b-d42ej2ae10] {
    display: flex;
    gap: 0.5rem;
}

.file-input[b-d42ej2ae10] {
    display: none;
}

.btn-file[b-d42ej2ae10] {
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin: 0;
}

.btn-file:hover[b-d42ej2ae10] {
    background: rgba(255, 255, 255, 0.3);
}

.text-input[b-d42ej2ae10] {
    flex: 1;
    padding: 1rem;
    border: none;
    resize: none;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.text-input:focus[b-d42ej2ae10] {
    outline: none;
}

.panel-footer[b-d42ej2ae10] {
    background: #f7fafc;
    padding: 0.75rem 1rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.875rem;
    color: #718096;
}

.stats-section[b-d42ej2ae10] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0;
    margin-bottom: 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.stat-card[b-d42ej2ae10] {
    background: white;
    border-radius: 0;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-right: 1px solid #e2e8f0;
}

.stat-card:last-child[b-d42ej2ae10] {
    border-right: none;
}

.stat-card i[b-d42ej2ae10] {
    font-size: 2rem;
}

.stat-content[b-d42ej2ae10] {
    flex: 1;
}

.stat-value[b-d42ej2ae10] {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label[b-d42ej2ae10] {
    font-size: 0.875rem;
    color: #718096;
    margin-top: 0.25rem;
}

.stat-total[b-d42ej2ae10] {
    color: #4299e1;
}

.stat-added[b-d42ej2ae10] {
    color: #48bb78;
}

.stat-removed[b-d42ej2ae10] {
    color: #f56565;
}

.stat-modified[b-d42ej2ae10] {
    color: #ed8936;
}

.stat-unchanged[b-d42ej2ae10] {
    color: #a0aec0;
}

.diff-navigation[b-d42ej2ae10] {
    background: white;
    border-radius: 0;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    border-bottom: 1px solid #e2e8f0;
}

.diff-counter[b-d42ej2ae10] {
    font-weight: 600;
    color: #4a5568;
}

.diff-viewer[b-d42ej2ae10] {
    background: white;
    border-radius: 0;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.diff-side-by-side[b-d42ej2ae10] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.diff-pane[b-d42ej2ae10] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.diff-pane:first-child[b-d42ej2ae10] {
    border-right: 2px solid #e2e8f0;
}

.pane-header[b-d42ej2ae10] {
    background: #f7fafc;
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.diff-content[b-d42ej2ae10] {
    flex: 1;
    overflow-y: auto;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
}

.diff-line[b-d42ej2ae10] {
    display: flex;
    min-height: 1.5rem;
    line-height: 1.5rem;
    padding: 0.125rem 0;
}

.line-number[b-d42ej2ae10] {
    width: 50px;
    padding: 0 0.5rem;
    text-align: right;
    color: #a0aec0;
    user-select: none;
    flex-shrink: 0;
}

.line-content[b-d42ej2ae10] {
    flex: 1;
    padding: 0 1rem 0 0.5rem;
    white-space: pre-wrap;
    word-break: break-all;
}

.diff-unchanged[b-d42ej2ae10] {
    background: transparent;
}

.diff-added[b-d42ej2ae10] {
    background: #e6ffed;
    border-left: 3px solid #48bb78;
}

.diff-removed[b-d42ej2ae10] {
    background: #ffe5e5;
    border-left: 3px solid #f56565;
}

.diff-modified[b-d42ej2ae10] {
    background: #fff3e0;
    border-left: 3px solid #ed8936;
}

.char-diff[b-d42ej2ae10] {
    background: rgba(237, 137, 54, 0.3);
    padding: 0 2px;
    border-radius: 2px;
}

.diff-added .char-diff[b-d42ej2ae10] {
    background: rgba(72, 187, 120, 0.4);
}

.diff-removed .char-diff[b-d42ej2ae10] {
    background: rgba(245, 101, 101, 0.4);
}

.current-diff[b-d42ej2ae10] {
    box-shadow: inset 0 0 0 2px #667eea;
}

.diff-inline[b-d42ej2ae10] {
    overflow-y: auto;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    padding: 1rem 0;
}

.line-marker[b-d42ej2ae10] {
    width: 30px;
    padding: 0 0.5rem;
    text-align: center;
    font-weight: 700;
    user-select: none;
    flex-shrink: 0;
}

.diff-added .line-marker[b-d42ej2ae10] {
    color: #48bb78;
}

.diff-removed .line-marker[b-d42ej2ae10] {
    color: #f56565;
}

/* Merge Mode Styles */
.merge-controls[b-d42ej2ae10] {
    background: white;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.merge-header[b-d42ej2ae10] {
    margin-bottom: 1rem;
}

.merge-title[b-d42ej2ae10] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #4a5568;
    margin: 0 0 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.merge-description[b-d42ej2ae10] {
    color: #718096;
    margin: 0;
    font-size: 0.875rem;
}

.merge-actions[b-d42ej2ae10] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.merge-selectable[b-d42ej2ae10] {
    position: relative;
}

.merge-selector[b-d42ej2ae10] {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-right: 1px solid #e2e8f0;
}

.merge-selectable .line-number[b-d42ej2ae10] {
    margin-left: 40px;
}

.merge-btn[b-d42ej2ae10] {
    width: 28px;
    height: 28px;
    border: 2px solid #cbd5e0;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
}

.merge-btn:hover[b-d42ej2ae10] {
    border-color: #667eea;
    transform: scale(1.1);
}

.merge-btn.selected[b-d42ej2ae10] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
}

.merge-btn i[b-d42ej2ae10] {
    font-size: 14px;
}

.merged-output-section[b-d42ej2ae10] {
    background: white;
    margin: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.merged-header[b-d42ej2ae10] {
    background: #4a5568;
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.merged-title[b-d42ej2ae10] {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.merged-content[b-d42ej2ae10] {
    padding: 1.5rem;
    background: #f7fafc;
    max-height: 400px;
    overflow-y: auto;
}

.merged-content pre[b-d42ej2ae10] {
    margin: 0;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-all;
    color: #2d3748;
}

.merged-footer[b-d42ej2ae10] {
    background: white;
    padding: 1rem 1.5rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.875rem;
    color: #718096;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .diff-container[b-d42ej2ae10] {
        padding: 0 1rem 1rem;
    }

    .diff-title[b-d42ej2ae10] {
        font-size: 1.85rem;
    }
}

@media (max-width: 768px) {
    .diff-header[b-d42ej2ae10] {
        padding: 1.5rem 1rem;
    }

    .diff-title[b-d42ej2ae10] {
        font-size: 1.5rem;
    }

    .diff-subtitle[b-d42ej2ae10] {
        font-size: 0.9rem;
    }

    .diff-controls[b-d42ej2ae10] {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .action-bar[b-d42ej2ae10] {
        padding: 1rem;
        flex-wrap: wrap;
    }

    .control-group[b-d42ej2ae10] {
        width: 100%;
    }

    .btn-group[b-d42ej2ae10] {
        width: 100%;
    }

    .btn-group .btn[b-d42ej2ae10] {
        flex: 1;
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }

    .input-panes[b-d42ej2ae10] {
        flex-direction: column;
    }

    .pane[b-d42ej2ae10] {
        min-height: 250px;
    }

    .stats-panel[b-d42ej2ae10] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .diff-header[b-d42ej2ae10] {
        padding: 1.25rem 0.75rem;
    }

    .diff-title[b-d42ej2ae10] {
        font-size: 1.3rem;
    }

    .diff-subtitle[b-d42ej2ae10] {
        font-size: 0.85rem;
    }

    .diff-controls[b-d42ej2ae10] {
        padding: 0.75rem;
    }

    .action-bar[b-d42ej2ae10] {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .btn-group .btn[b-d42ej2ae10] {
        font-size: 0.8rem;
        padding: 0.45rem 0.6rem;
    }

    .pane[b-d42ej2ae10] {
        min-height: 200px;
    }

    .pane textarea[b-d42ej2ae10] {
        font-size: 0.85rem;
    }

    .stats-panel[b-d42ej2ae10] {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .stat-card[b-d42ej2ae10] {
        padding: 0.75rem;
    }

    .stat-value[b-d42ej2ae10] {
        font-size: 1.25rem;
    }

    .stat-label[b-d42ej2ae10] {
        font-size: 0.75rem;
    }

    .form-select[b-d42ej2ae10] {
        width: 100%;
    }

    .action-bar[b-d42ej2ae10] {
        flex-direction: column;
    }

    .action-bar .btn[b-d42ej2ae10] {
        width: 100%;
        justify-content: center;
    }

    .input-section[b-d42ej2ae10] {
        grid-template-columns: 1fr;
    }

    .stats-section[b-d42ej2ae10] {
        grid-template-columns: repeat(2, 1fr);
    }

    .diff-side-by-side[b-d42ej2ae10] {
        grid-template-columns: 1fr;
    }

    .diff-pane:first-child[b-d42ej2ae10] {
        border-right: none;
        border-bottom: 2px solid #e2e8f0;
    }

    .diff-navigation[b-d42ej2ae10] {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }

    .diff-navigation .btn[b-d42ej2ae10] {
        width: 100%;
    }

    .stats-section[b-d42ej2ae10] {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        background: #e2e8f0;
    }

    .stat-card[b-d42ej2ae10] {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .merge-controls[b-d42ej2ae10] {
        padding: 1rem;
    }

    .merge-actions[b-d42ej2ae10] {
        flex-direction: column;
    }

    .merge-actions .btn[b-d42ej2ae10] {
        width: 100%;
    }

    .merged-output-section[b-d42ej2ae10] {
        margin: 1rem;
    }

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

    .merged-header .btn[b-d42ej2ae10] {
        width: 100%;
    }
}

/* Scrollbar Styling */
.diff-content[b-d42ej2ae10]::-webkit-scrollbar,
.diff-inline[b-d42ej2ae10]::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.diff-content[b-d42ej2ae10]::-webkit-scrollbar-track,
.diff-inline[b-d42ej2ae10]::-webkit-scrollbar-track {
    background: #f7fafc;
}

.diff-content[b-d42ej2ae10]::-webkit-scrollbar-thumb,
.diff-inline[b-d42ej2ae10]::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 5px;
}

.diff-content[b-d42ej2ae10]::-webkit-scrollbar-thumb:hover,
.diff-inline[b-d42ej2ae10]::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

/* Toast Notification */
.toast-notification[b-d42ej2ae10] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: green;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--font-base);
    font-weight: 500;
    z-index: 1000;
    animation: slideIn-b-d42ej2ae10 0.3s ease-out;
}

.toast-notification.show[b-d42ej2ae10] {
    display: flex;
}

.toast-notification i[b-d42ej2ae10] {
    font-size: var(--font-lg);
}

@keyframes slideIn-b-d42ej2ae10 {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===================================
   QUICK GUIDE MODAL
   =================================== */

.modal-overlay[b-d42ej2ae10] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn-b-d42ej2ae10 0.2s ease;
}

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

@keyframes scaleIn-b-d42ej2ae10 {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-container.guide-modal[b-d42ej2ae10] {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn-b-d42ej2ae10 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .modal-container.guide-modal[b-d42ej2ae10] {
    background: #2d2d2d;
}

.guide-modal .modal-header[b-d42ej2ae10] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-modal .modal-header h5[b-d42ej2ae10] {
    margin: 0;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guide-modal .btn-close[b-d42ej2ae10] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guide-modal .btn-close:hover[b-d42ej2ae10] {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.guide-modal .modal-body[b-d42ej2ae10] {
    padding: 2rem;
    max-height: calc(85vh - 180px);
    overflow-y: auto;
}

.guide-modal .modal-footer[b-d42ej2ae10] {
    padding: 1.5rem 2rem;
    background: #f9fafb;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    border-top: 2px solid #e5e7eb;
}

[data-theme="dark"] .guide-modal .modal-footer[b-d42ej2ae10] {
    background: #1a1a1a;
    border-top-color: #444;
}

.guide-modal .btn-secondary[b-d42ej2ae10] {
    padding: 0.75rem 1.5rem;
    border: 2px solid #6366f1;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #6366f1;
}

[data-theme="dark"] .guide-modal .btn-secondary[b-d42ej2ae10] {
    background: #2d2d2d;
    color: #818cf8;
    border-color: #818cf8;
}

.guide-modal .btn-secondary:hover[b-d42ej2ae10] {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

[data-theme="dark"] .guide-modal .btn-secondary:hover[b-d42ej2ae10] {
    background: #818cf8;
    color: white;
}

.guide-body[b-d42ej2ae10] {
    padding: 1.5rem;
}

.guide-intro[b-d42ej2ae10] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.guide-intro p[b-d42ej2ae10] {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.guide-section[b-d42ej2ae10] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.guide-step[b-d42ej2ae10] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid #6366f1;
    transition: all 0.2s ease;
}

[data-theme="dark"] .guide-step[b-d42ej2ae10] {
    background: #2d2d2d;
    border-left-color: #8b5cf6;
}

.guide-step:hover[b-d42ej2ae10] {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number[b-d42ej2ae10] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.step-content[b-d42ej2ae10] {
    flex: 1;
}

.step-content h6[b-d42ej2ae10] {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .step-content h6[b-d42ej2ae10] {
    color: #e5e7eb;
}

.step-content h6 i[b-d42ej2ae10] {
    font-size: 1.1rem;
}

.step-content p[b-d42ej2ae10] {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

[data-theme="dark"] .step-content p[b-d42ej2ae10] {
    color: #9ca3af;
}

.guide-tips[b-d42ej2ae10] {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1.25rem;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
}

[data-theme="dark"] .guide-tips[b-d42ej2ae10] {
    background: linear-gradient(135deg, #78350f, #92400e);
    border-left-color: #fbbf24;
}

.guide-tips h6[b-d42ej2ae10] {
    margin: 0 0 0.75rem 0;
    font-weight: 700;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .guide-tips h6[b-d42ej2ae10] {
    color: #fbbf24;
}

.guide-tips h6 i[b-d42ej2ae10] {
    color: #f59e0b;
}

[data-theme="dark"] .guide-tips h6 i[b-d42ej2ae10] {
    color: #fbbf24;
}

.guide-tips ul[b-d42ej2ae10] {
    margin: 0;
    padding-left: 1.5rem;
}

.guide-tips li[b-d42ej2ae10] {
    color: #78350f;
    font-size: 0.9rem;
    line-height: 1.8;
}

[data-theme="dark"] .guide-tips li[b-d42ej2ae10] {
    color: #fde68a;
}

.guide-tips strong[b-d42ej2ae10] {
    color: #92400e;
    font-weight: 600;
}

[data-theme="dark"] .guide-tips strong[b-d42ej2ae10] {
    color: #fbbf24;
}

/* Text color helpers */
.text-success[b-d42ej2ae10] {
    color: #10b981;
}

.text-primary[b-d42ej2ae10] {
    color: #3b82f6;
}

.text-info[b-d42ej2ae10] {
    color: #06b6d4;
}

.text-warning[b-d42ej2ae10] {
    color: #f59e0b;
}

/* Mobile responsiveness for guide */
@media (max-width: 768px) {
    .guide-modal[b-d42ej2ae10] {
        max-width: 95%;
        max-height: 90vh;
    }

    .guide-step[b-d42ej2ae10] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .step-number[b-d42ej2ae10] {
        align-self: flex-start;
    }
}
/* /Apps/TextUtilities/Pages/TextUtilitiesPage.razor.rz.scp.css */
.text-utilities-container[b-xmvkmv6wy4] {
    padding: 1.5rem;
    max-width: 100%;
    min-height: calc(100vh - 60px);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.app-header[b-xmvkmv6wy4] {
    text-align: center;
    margin-bottom: 1.5rem;
    background: #2d3748;
    color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    position: relative;
}

.app-header h1[b-xmvkmv6wy4] {
    margin: 0;
    font-size: var(--font-2xl);
    font-weight: 700;
}

.app-header p[b-xmvkmv6wy4] {
    margin: 0.5rem 0 0 0;
    font-size: var(--font-sm);
    opacity: 0.9;
}

.btn-help[b-xmvkmv6wy4] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: var(--font-sm);
    font-weight: 500;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-help:hover[b-xmvkmv6wy4] {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-help i[b-xmvkmv6wy4] {
    font-size: 1.2rem;
}

.utilities-layout[b-xmvkmv6wy4] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    min-height: 0;
}

.top-section[b-xmvkmv6wy4] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    min-height: 400px;
}

.bottom-section[b-xmvkmv6wy4] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-panel[b-xmvkmv6wy4],
.output-panel[b-xmvkmv6wy4],
.operations-panel[b-xmvkmv6wy4],
.statistics-panel[b-xmvkmv6wy4] {
    display: flex;
    flex-direction: column;
}

.panel-section[b-xmvkmv6wy4] {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.input-panel[b-xmvkmv6wy4],
.output-panel[b-xmvkmv6wy4] {
    flex: 1;
    min-height: 0;
}

.operations-panel[b-xmvkmv6wy4] {
    overflow-y: auto;
    max-height: 500px;
}

.statistics-panel[b-xmvkmv6wy4] {
    min-height: 0;
}

.section-header[b-xmvkmv6wy4] {
    color: #4a5568;
    font-size: var(--font-md);
    font-weight: 600;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-toggle[b-xmvkmv6wy4] {
    background: none;
    border: none;
    color: #4a5568;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    font-size: var(--font-lg);
}

.btn-toggle:hover[b-xmvkmv6wy4] {
    color: #2d3748;
}

.input-textarea[b-xmvkmv6wy4],
.output-textarea[b-xmvkmv6wy4] {
    width: 100%;
    flex: 1;
    min-height: 200px;
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 0.375rem;
    font-family: 'Courier New', monospace;
    font-size: var(--font-sm);
    resize: none;
    overflow-y: auto;
}

.input-textarea:focus[b-xmvkmv6wy4],
.output-textarea:focus[b-xmvkmv6wy4] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.output-textarea[b-xmvkmv6wy4] {
    background-color: #f7fafc;
}

.output-highlighted[b-xmvkmv6wy4] {
    width: 100%;
    flex: 1;
    min-height: 200px;
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 0.375rem;
    font-family: 'Courier New', monospace;
    font-size: var(--font-sm);
    overflow-y: auto;
    background-color: #f7fafc;
    white-space: pre-wrap;
    word-wrap: break-word;
    cursor: pointer;
}

.output-highlighted:hover[b-xmvkmv6wy4] {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.highlight-replace[b-xmvkmv6wy4] {
    background-color: #fef3c7;
    color: #92400e;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    font-weight: 600;
    box-shadow: 0 0 0 2px #fcd34d;
}

.button-group[b-xmvkmv6wy4] {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.btn[b-xmvkmv6wy4] {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.375rem;
    font-size: var(--font-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary[b-xmvkmv6wy4] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover:not(:disabled)[b-xmvkmv6wy4] {
    background: linear-gradient(135deg, #5568d3 0%, #63408a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

.btn-secondary[b-xmvkmv6wy4] {
    background: #e2e8f0;
    color: #2d3748;
}

.btn-secondary:hover:not(:disabled)[b-xmvkmv6wy4] {
    background: #cbd5e0;
    transform: translateY(-1px);
}

.btn:disabled[b-xmvkmv6wy4] {
    opacity: 0.5;
    cursor: not-allowed;
}

.operations-controls[b-xmvkmv6wy4] {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f7fafc;
    border-radius: 0.375rem;
}

.operations-controls label[b-xmvkmv6wy4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-sm);
    cursor: pointer;
}

.operations-controls input[type="checkbox"][b-xmvkmv6wy4] {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}

.operation-category[b-xmvkmv6wy4] {
    margin-bottom: 1rem;
}

.category-header[b-xmvkmv6wy4] {
    color: #2d3748;
    font-size: var(--font-sm);
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    padding: 0.5rem;
    background: #edf2f7;
    border-radius: 0.375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
}

.category-header:hover[b-xmvkmv6wy4] {
    background: #e2e8f0;
}

.operation-buttons[b-xmvkmv6wy4] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.btn-operation[b-xmvkmv6wy4] {
    padding: 0.5rem 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 0.375rem;
    background: white;
    color: #2d3748;
    font-size: var(--font-xs);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-start;
    text-align: left;
}

.btn-operation:hover[b-xmvkmv6wy4] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
}

.statistics-grid[b-xmvkmv6wy4] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.stat-item[b-xmvkmv6wy4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: #f7fafc;
    border-radius: 0.375rem;
    border-left: 3px solid #667eea;
}

.stat-label[b-xmvkmv6wy4] {
    font-size: var(--font-xs);
    color: #4a5568;
    font-weight: 500;
}

.stat-value[b-xmvkmv6wy4] {
    font-size: var(--font-sm);
    color: #2d3748;
    font-weight: 700;
}

.alert[b-xmvkmv6wy4] {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-danger[b-xmvkmv6wy4] {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #feb2b2;
}

/* Toast Notification */
.toast[b-xmvkmv6wy4] {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.3s;
}

.toast.show[b-xmvkmv6wy4] {
    opacity: 1;
}

.toast-header[b-xmvkmv6wy4] {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
}

.toast-body[b-xmvkmv6wy4] {
    padding: 0.75rem 1rem;
    font-size: var(--font-sm);
}

.btn-close[b-xmvkmv6wy4] {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .top-section[b-xmvkmv6wy4],
    .bottom-section[b-xmvkmv6wy4] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .top-section[b-xmvkmv6wy4] {
        min-height: auto;
    }

    .statistics-grid[b-xmvkmv6wy4] {
        grid-template-columns: repeat(4, 1fr);
    }

    .operation-buttons[b-xmvkmv6wy4] {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

@media (max-width: 767px) {
    .text-utilities-container[b-xmvkmv6wy4] {
        padding: 1rem;
        min-height: 100vh;
        height: auto;
        overflow-y: auto;
    }

    .app-header[b-xmvkmv6wy4] {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .app-header h1[b-xmvkmv6wy4] {
        font-size: var(--font-xl);
    }

    .utilities-layout[b-xmvkmv6wy4] {
        gap: 1rem;
        display: flex;
        flex-direction: column;
    }

    .left-panel[b-xmvkmv6wy4],
    .right-panel[b-xmvkmv6wy4] {
        min-height: auto;
        overflow: visible;
    }

    .panel-section[b-xmvkmv6wy4] {
        overflow: visible;
    }

    .panel-section:first-child[b-xmvkmv6wy4] {
        flex: none;
    }

    .operations-section[b-xmvkmv6wy4] {
        overflow: visible;
        flex: none;
    }

    .input-textarea[b-xmvkmv6wy4],
    .output-textarea[b-xmvkmv6wy4] {
        min-height: 180px;
        max-height: 300px;
    }

    .statistics-grid[b-xmvkmv6wy4] {
        grid-template-columns: repeat(2, 1fr);
    }

    .operation-buttons[b-xmvkmv6wy4] {
        grid-template-columns: 1fr;
    }

    .button-group[b-xmvkmv6wy4] {
        flex-direction: column;
    }

    .btn[b-xmvkmv6wy4] {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .text-utilities-container[b-xmvkmv6wy4] {
        padding: 0.75rem;
    }

    .app-header[b-xmvkmv6wy4] {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .app-header h1[b-xmvkmv6wy4] {
        font-size: var(--font-lg);
    }

    .app-header p[b-xmvkmv6wy4] {
        font-size: var(--font-xs);
    }

    .panel-section[b-xmvkmv6wy4] {
        padding: 0.75rem;
    }

    .utilities-layout[b-xmvkmv6wy4] {
        gap: 0.75rem;
    }

    .input-textarea[b-xmvkmv6wy4],
    .output-textarea[b-xmvkmv6wy4] {
        min-height: 150px;
        max-height: 250px;
    }

    .statistics-grid[b-xmvkmv6wy4] {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* ===================================
   FIND & REPLACE STYLES
   =================================== */

.find-replace-content[b-xmvkmv6wy4] {
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.find-replace-group[b-xmvkmv6wy4] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.find-replace-group label[b-xmvkmv6wy4] {
    font-size: var(--font-xs);
    font-weight: 600;
    color: #2d3748;
}

.find-replace-input[b-xmvkmv6wy4] {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 0.375rem;
    font-size: var(--font-sm);
    font-family: 'Courier New', monospace;
}

.find-replace-input:focus[b-xmvkmv6wy4] {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.find-replace-options[b-xmvkmv6wy4] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.5rem;
    background: #f7fafc;
    border-radius: 0.375rem;
}

.checkbox-label[b-xmvkmv6wy4] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: var(--font-xs);
    color: #4a5568;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"][b-xmvkmv6wy4] {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}

.checkbox-label i[b-xmvkmv6wy4] {
    font-size: 0.875rem;
}

.replace-mode-wrapper[b-xmvkmv6wy4] {
    display: flex;
    gap: 0.5rem;
}

.replace-mode-select[b-xmvkmv6wy4] {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 0.375rem;
    font-size: var(--font-sm);
    background: white;
    cursor: pointer;
}

.replace-mode-select:focus[b-xmvkmv6wy4] {
    outline: none;
    border-color: #4299e1;
}

.nth-input[b-xmvkmv6wy4] {
    width: 80px;
    padding: 0.5rem 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 0.375rem;
    font-size: var(--font-sm);
    text-align: center;
}

.nth-input:focus[b-xmvkmv6wy4] {
    outline: none;
    border-color: #4299e1;
}

.match-preview[b-xmvkmv6wy4] {
    background: #f0fff4;
    border: 1px solid #9ae6b4;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    font-size: var(--font-xs);
    color: #22543d;
}

.match-preview i[b-xmvkmv6wy4] {
    color: #38a169;
}

.find-replace-error[b-xmvkmv6wy4] {
    background: #fff5f5;
    color: #c53030;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    border-left: 3px solid #fc8181;
    font-size: var(--font-xs);
}

.find-replace-actions[b-xmvkmv6wy4] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.quick-patterns[b-xmvkmv6wy4] {
    border-top: 1px solid #e2e8f0;
    padding-top: 0.75rem;
}

.pattern-header[b-xmvkmv6wy4] {
    font-size: var(--font-xs);
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.pattern-header i[b-xmvkmv6wy4] {
    color: #ecc94b;
}

.pattern-buttons[b-xmvkmv6wy4] {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
}

.btn-pattern[b-xmvkmv6wy4] {
    padding: 0.375rem 0.5rem;
    border: 1px solid #cbd5e0;
    border-radius: 0.375rem;
    background: white;
    color: #2d3748;
    font-size: var(--font-xs);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-pattern:hover[b-xmvkmv6wy4] {
    background: #edf2f7;
    border-color: #a0aec0;
}

.checkbox-label i[b-xmvkmv6wy4] {
    font-size: 1rem;
    color: #667eea;
}

.replace-mode-wrapper[b-xmvkmv6wy4] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.replace-mode-select[b-xmvkmv6wy4] {
    padding: 0.5rem 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 0.375rem;
    font-size: var(--font-sm);
    background: white;
    color: #2d3748;
    cursor: pointer;
    transition: all 0.2s;
    flex: 1;
    min-width: 0;
}

.replace-mode-select:focus[b-xmvkmv6wy4] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.nth-input[b-xmvkmv6wy4] {
    width: 100px;
    padding: 0.5rem 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 0.375rem;
    font-size: var(--font-sm);
    text-align: center;
    flex-shrink: 0;
}

.nth-input:focus[b-xmvkmv6wy4] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.match-preview[b-xmvkmv6wy4] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    padding: 0.75rem;
}

.preview-header[b-xmvkmv6wy4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: var(--font-sm);
    color: #4a5568;
    font-weight: 600;
}

.preview-header i[b-xmvkmv6wy4] {
    color: #667eea;
}

.match-count[b-xmvkmv6wy4] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.25rem 0.625rem;
    border-radius: 0.25rem;
    font-size: var(--font-xs);
    font-weight: 700;
}

.find-replace-error[b-xmvkmv6wy4] {
    background: #fff5f5;
    color: #c53030;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    border-left: 3px solid #fc8181;
    font-size: var(--font-xs);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.find-replace-actions[b-xmvkmv6wy4] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-find-replace[b-xmvkmv6wy4] {
    flex: 1;
    min-width: 100px;
    justify-content: center;
}

.quick-patterns[b-xmvkmv6wy4] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-patterns label[b-xmvkmv6wy4] {
    font-size: var(--font-xs);
    font-weight: 600;
    color: #2d3748;
}

.pattern-buttons[b-xmvkmv6wy4] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.btn-pattern[b-xmvkmv6wy4] {
    padding: 0.375rem 0.625rem;
    border: 1px solid #cbd5e0;
    border-radius: 0.375rem;
    background: white;
    color: #4a5568;
    font-size: var(--font-xs);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.btn-pattern:hover[b-xmvkmv6wy4] {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
}

.btn-pattern i[b-xmvkmv6wy4] {
    font-size: 0.875rem;
}

/* Interactive Match Selection */
.interactive-matches[b-xmvkmv6wy4] {
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    padding: 0.75rem;
    background: white;
    margin-top: 0.5rem;
}

.interactive-header[b-xmvkmv6wy4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: var(--font-sm);
    font-weight: 600;
    color: #2d3748;
}

.interactive-header i[b-xmvkmv6wy4] {
    color: #667eea;
    margin-right: 0.25rem;
}

.selection-actions[b-xmvkmv6wy4] {
    display: flex;
    gap: 0.5rem;
}

.btn-select-action[b-xmvkmv6wy4] {
    padding: 0.25rem 0.5rem;
    border: 1px solid #cbd5e0;
    border-radius: 0.25rem;
    background: white;
    color: #4a5568;
    font-size: var(--font-xs);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-select-action:hover[b-xmvkmv6wy4] {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.match-list[b-xmvkmv6wy4] {
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.match-item[b-xmvkmv6wy4] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.match-item:hover[b-xmvkmv6wy4] {
    border-color: #667eea;
    background: #f7fafc;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.1);
}

.match-item.selected[b-xmvkmv6wy4] {
    border-color: #667eea;
    background: #eef2ff;
}

.match-checkbox[b-xmvkmv6wy4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    flex-shrink: 0;
}

.match-checkbox input[type="checkbox"][b-xmvkmv6wy4] {
    width: 1.125rem;
    height: 1.125rem;
    cursor: pointer;
    accent-color: #667eea;
}

.match-number[b-xmvkmv6wy4] {
    font-weight: 600;
    color: #667eea;
    font-size: var(--font-sm);
    min-width: 2rem;
}

.match-context[b-xmvkmv6wy4] {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: var(--font-xs);
    color: #4a5568;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.context-before[b-xmvkmv6wy4],
.context-after[b-xmvkmv6wy4] {
    color: #718096;
}

.match-text[b-xmvkmv6wy4] {
    background: #fef3c7;
    color: #92400e;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    font-weight: 600;
}

.match-position[b-xmvkmv6wy4] {
    font-size: var(--font-xs);
    color: #a0aec0;
    flex-shrink: 0;
}

.interactive-summary[b-xmvkmv6wy4] {
    padding: 0.5rem 0.75rem;
    background: #eef2ff;
    border-radius: 0.25rem;
    font-size: var(--font-xs);
    color: #4c51bf;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.interactive-summary i[b-xmvkmv6wy4] {
    color: #667eea;
}

.interactive-summary strong[b-xmvkmv6wy4] {
    color: #5a67d8;
    font-weight: 700;
}

/* Dark Theme Support */
[data-theme="dark"] .advanced-find-replace[b-xmvkmv6wy4] {
    border-color: #4a5568;
}

[data-theme="dark"] .find-replace-content[b-xmvkmv6wy4] {
    background: #2d3748;
}

[data-theme="dark"] .find-replace-input[b-xmvkmv6wy4] {
    background: #1a202c;
    border-color: #4a5568;
    color: #e2e8f0;
}

[data-theme="dark"] .find-replace-options[b-xmvkmv6wy4] {
    background: #1a202c;
    border-color: #4a5568;
}

[data-theme="dark"] .checkbox-label[b-xmvkmv6wy4] {
    color: #cbd5e0;
}

[data-theme="dark"] .replace-mode-select[b-xmvkmv6wy4],
[data-theme="dark"] .nth-input[b-xmvkmv6wy4] {
    background: #1a202c;
    border-color: #4a5568;
    color: #e2e8f0;
}

[data-theme="dark"] .match-preview[b-xmvkmv6wy4] {
    background: #1a202c;
    border-color: #4a5568;
}

[data-theme="dark"] .preview-header[b-xmvkmv6wy4] {
    color: #cbd5e0;
}

[data-theme="dark"] .btn-pattern[b-xmvkmv6wy4] {
    background: #1a202c;
    border-color: #4a5568;
    color: #cbd5e0;
}

[data-theme="dark"] .btn-pattern:hover[b-xmvkmv6wy4] {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

[data-theme="dark"] .output-highlighted[b-xmvkmv6wy4] {
    background-color: #1a202c;
    border-color: #4a5568;
    color: #e2e8f0;
}

[data-theme="dark"] .highlight-replace[b-xmvkmv6wy4] {
    background-color: #744210;
    color: #fef3c7;
    box-shadow: 0 0 0 2px #92400e;
}

[data-theme="dark"] .interactive-matches[b-xmvkmv6wy4] {
    background: #2d3748;
    border-color: #4a5568;
}

[data-theme="dark"] .interactive-header[b-xmvkmv6wy4] {
    color: #e2e8f0;
    border-color: #4a5568;
}

[data-theme="dark"] .btn-select-action[b-xmvkmv6wy4] {
    background: #1a202c;
    border-color: #4a5568;
    color: #cbd5e0;
}

[data-theme="dark"] .btn-select-action:hover[b-xmvkmv6wy4] {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

[data-theme="dark"] .match-item[b-xmvkmv6wy4] {
    background: #1a202c;
    border-color: #4a5568;
}

[data-theme="dark"] .match-item:hover[b-xmvkmv6wy4] {
    background: #2d3748;
    border-color: #667eea;
}

[data-theme="dark"] .match-item.selected[b-xmvkmv6wy4] {
    background: #2d3748;
    border-color: #667eea;
}

[data-theme="dark"] .match-number[b-xmvkmv6wy4] {
    color: #a5b4fc;
}

[data-theme="dark"] .match-context[b-xmvkmv6wy4] {
    color: #cbd5e0;
}

[data-theme="dark"] .context-before[b-xmvkmv6wy4],
[data-theme="dark"] .context-after[b-xmvkmv6wy4] {
    color: #a0aec0;
}

[data-theme="dark"] .match-text[b-xmvkmv6wy4] {
    background: #744210;
    color: #fef3c7;
}

[data-theme="dark"] .match-position[b-xmvkmv6wy4] {
    color: #718096;
}

[data-theme="dark"] .interactive-summary[b-xmvkmv6wy4] {
    background: #1e3a5f;
    color: #a5b4fc;
}

[data-theme="dark"] .interactive-summary i[b-xmvkmv6wy4] {
    color: #a5b4fc;
}

[data-theme="dark"] .interactive-summary strong[b-xmvkmv6wy4] {
    color: #c7d2fe;
}

/* Responsive for Find & Replace */
@media (max-width: 767px) {
    .find-replace-options[b-xmvkmv6wy4] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .find-replace-actions[b-xmvkmv6wy4] {
        flex-direction: column;
    }

    .btn-find-replace[b-xmvkmv6wy4] {
        width: 100%;
    }

    .pattern-buttons[b-xmvkmv6wy4] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pattern-buttons[b-xmvkmv6wy4] {
        grid-template-columns: 1fr;
    }
}

/* Help Guide Modal */
.modal-overlay[b-xmvkmv6wy4] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
    overflow-y: auto;
}

.guide-modal[b-xmvkmv6wy4] {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn-b-xmvkmv6wy4 0.3s ease-out;
}

@keyframes modalSlideIn-b-xmvkmv6wy4 {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header[b-xmvkmv6wy4] {
    padding: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 0.75rem 0.75rem 0 0;
}

.modal-header h2[b-xmvkmv6wy4] {
    margin: 0;
    font-size: var(--font-xl);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-header h2 i[b-xmvkmv6wy4] {
    font-size: 1.75rem;
}

.btn-close-modal[b-xmvkmv6wy4] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 1.25rem;
}

.btn-close-modal:hover[b-xmvkmv6wy4] {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body[b-xmvkmv6wy4] {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.modal-footer[b-xmvkmv6wy4] {
    padding: 1.5rem;
    border-top: 2px solid #e2e8f0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    background: #f8fafc;
    border-radius: 0 0 0.75rem 0.75rem;
}

/* Guide Sections */
.guide-section[b-xmvkmv6wy4] {
    margin-bottom: 2.5rem;
}

.guide-section:last-child[b-xmvkmv6wy4] {
    margin-bottom: 0;
}

.guide-section h3[b-xmvkmv6wy4] {
    color: #2d3748;
    font-size: var(--font-lg);
    font-weight: 700;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.guide-section h3 i[b-xmvkmv6wy4] {
    color: #667eea;
    font-size: 1.5rem;
}

.guide-subsection[b-xmvkmv6wy4] {
    margin: 1.5rem 0;
    padding-left: 1rem;
    border-left: 3px solid #667eea;
}

.guide-subsection h4[b-xmvkmv6wy4] {
    color: #4a5568;
    font-size: var(--font-md);
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.guide-steps[b-xmvkmv6wy4] {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-steps li[b-xmvkmv6wy4] {
    counter-increment: step-counter;
    margin: 1rem 0;
    padding-left: 3rem;
    position: relative;
    line-height: 1.6;
}

.guide-steps li[b-xmvkmv6wy4]::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-sm);
}

.guide-note[b-xmvkmv6wy4] {
    display: block;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #eef2ff;
    border-left: 3px solid #667eea;
    font-size: var(--font-sm);
    color: #4c51bf;
    border-radius: 0.25rem;
}

.guide-list[b-xmvkmv6wy4] {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
}

.guide-list li[b-xmvkmv6wy4] {
    margin: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.guide-list li[b-xmvkmv6wy4]::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 1.25rem;
}

.guide-category[b-xmvkmv6wy4] {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    border-left: 4px solid #667eea;
}

.guide-category h4[b-xmvkmv6wy4] {
    color: #2d3748;
    font-size: var(--font-md);
    font-weight: 600;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guide-category h4 i[b-xmvkmv6wy4] {
    color: #667eea;
}

.quick-patterns-guide[b-xmvkmv6wy4] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.pattern-item[b-xmvkmv6wy4] {
    background: white;
    border: 1px solid #cbd5e0;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-sm);
    font-weight: 500;
    color: #4a5568;
}

.pattern-item i[b-xmvkmv6wy4] {
    color: #667eea;
}

/* Tips Grid */
.tips-grid[b-xmvkmv6wy4] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.tip-card[b-xmvkmv6wy4] {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    border: 1px solid #cbd5e0;
    border-radius: 0.5rem;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.2s;
}

.tip-card:hover[b-xmvkmv6wy4] {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.tip-card i[b-xmvkmv6wy4] {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 0.75rem;
    display: block;
}

.tip-card strong[b-xmvkmv6wy4] {
    display: block;
    color: #2d3748;
    font-size: var(--font-md);
    margin-bottom: 0.5rem;
}

.tip-card p[b-xmvkmv6wy4] {
    margin: 0;
    color: #4a5568;
    font-size: var(--font-sm);
    line-height: 1.5;
}

/* Keyboard Shortcuts */
.shortcuts-list[b-xmvkmv6wy4] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.shortcut-item[b-xmvkmv6wy4] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
}

.shortcut-item kbd[b-xmvkmv6wy4] {
    background: white;
    border: 1px solid #cbd5e0;
    border-bottom: 3px solid #a0aec0;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: var(--font-sm);
    font-weight: 600;
    color: #2d3748;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
}

.shortcut-item span[b-xmvkmv6wy4] {
    flex: 1;
    color: #4a5568;
    font-size: var(--font-sm);
}

/* Privacy Note */
.privacy-note[b-xmvkmv6wy4] {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border: 2px solid #a5b4fc;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.privacy-note h3[b-xmvkmv6wy4] {
    color: #4c51bf;
    border-bottom: 2px solid #a5b4fc;
}

.privacy-note p[b-xmvkmv6wy4] {
    margin: 0.75rem 0;
    color: #4a5568;
    line-height: 1.6;
}

.privacy-note p:last-child[b-xmvkmv6wy4] {
    margin-bottom: 0;
}

/* Dark Theme for Modal */
[data-theme="dark"] .guide-modal[b-xmvkmv6wy4] {
    background: #1a202c;
}

[data-theme="dark"] .modal-header[b-xmvkmv6wy4] {
    border-bottom-color: #4a5568;
}

[data-theme="dark"] .modal-footer[b-xmvkmv6wy4] {
    border-top-color: #4a5568;
    background: #2d3748;
}

[data-theme="dark"] .modal-body[b-xmvkmv6wy4] {
    color: #e2e8f0;
}

[data-theme="dark"] .guide-section h3[b-xmvkmv6wy4] {
    color: #e2e8f0;
    border-bottom-color: #4a5568;
}

[data-theme="dark"] .guide-subsection h4[b-xmvkmv6wy4] {
    color: #cbd5e0;
}

[data-theme="dark"] .guide-note[b-xmvkmv6wy4] {
    background: #2d3748;
    border-left-color: #667eea;
    color: #a5b4fc;
}

[data-theme="dark"] .guide-category[b-xmvkmv6wy4] {
    background: #2d3748;
    border-left-color: #667eea;
}

[data-theme="dark"] .guide-category h4[b-xmvkmv6wy4] {
    color: #e2e8f0;
}

[data-theme="dark"] .pattern-item[b-xmvkmv6wy4] {
    background: #1a202c;
    border-color: #4a5568;
    color: #cbd5e0;
}

[data-theme="dark"] .tip-card[b-xmvkmv6wy4] {
    background: linear-gradient(135deg, #2d3748 0%, #374151 100%);
    border-color: #4a5568;
}

[data-theme="dark"] .tip-card strong[b-xmvkmv6wy4] {
    color: #e2e8f0;
}

[data-theme="dark"] .tip-card p[b-xmvkmv6wy4] {
    color: #cbd5e0;
}

[data-theme="dark"] .shortcut-item[b-xmvkmv6wy4] {
    background: #2d3748;
    border-color: #4a5568;
}

[data-theme="dark"] .shortcut-item kbd[b-xmvkmv6wy4] {
    background: #1a202c;
    border-color: #4a5568;
    border-bottom-color: #2d3748;
    color: #e2e8f0;
}

[data-theme="dark"] .shortcut-item span[b-xmvkmv6wy4] {
    color: #cbd5e0;
}

[data-theme="dark"] .privacy-note[b-xmvkmv6wy4] {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4365 100%);
    border-color: #4c51bf;
}

[data-theme="dark"] .privacy-note h3[b-xmvkmv6wy4] {
    color: #a5b4fc;
    border-bottom-color: #4c51bf;
}

[data-theme="dark"] .privacy-note p[b-xmvkmv6wy4] {
    color: #cbd5e0;
}

/* Responsive for Modal */
@media (max-width: 767px) {
    .modal-overlay[b-xmvkmv6wy4] {
        padding: 0.5rem;
    }

    .guide-modal[b-xmvkmv6wy4] {
        max-height: 95vh;
    }

    .modal-header[b-xmvkmv6wy4] {
        padding: 1rem;
    }

    .modal-header h2[b-xmvkmv6wy4] {
        font-size: var(--font-lg);
    }

    .modal-body[b-xmvkmv6wy4] {
        padding: 1rem;
    }

    .modal-footer[b-xmvkmv6wy4] {
        padding: 1rem;
    }

    .tips-grid[b-xmvkmv6wy4] {
        grid-template-columns: 1fr;
    }

    .guide-steps li[b-xmvkmv6wy4] {
        padding-left: 2.5rem;
    }

    .guide-steps li[b-xmvkmv6wy4]::before {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }

    .btn-help[b-xmvkmv6wy4] {
        position: static;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

/* /Apps/XPathTool/Pages/XPathToolPage.razor.rz.scp.css */
/* XPath Tool - Modern Split-View Design */

/* ===================================
   PAGE HEADER
   =================================== */

.page-header[b-x4pktyvcfu] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    border-bottom: 3px solid #5a67d8;
    position: relative;
}

.header-content[b-x4pktyvcfu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 1rem;
}

.header-text[b-x4pktyvcfu] {
    flex: 1;
    text-align: center;
}

.page-title[b-x4pktyvcfu] {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.page-title i[b-x4pktyvcfu] {
    font-size: 2.5rem;
    color: #a5f3fc; /* cyan XPath icon */
}

.xpath-subtitle[b-x4pktyvcfu] {
    margin: 0.5rem 0 0 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.page-header .btn-primary[b-x4pktyvcfu] {
    background: white;
    color: #667eea;
    border: 2px solid white;
    padding: 0.625rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.page-header .btn-primary:hover[b-x4pktyvcfu] {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .page-header[b-x4pktyvcfu] {
    background: linear-gradient(135deg, #4c1d95, #5b21b6);
}

[data-theme="dark"] .page-header .btn-primary[b-x4pktyvcfu] {
    background: #3a3a3a;
    color: #e5e7eb;
    border-color: #4a4a4a;
}

[data-theme="dark"] .page-header .btn-primary:hover[b-x4pktyvcfu] {
    background: #4a4a4a;
}

/* ===================================
   EXISTING STYLES
   =================================== */

.xpath-tool-container[b-x4pktyvcfu] {
    min-height: calc(100vh - 60px);
    height: auto;
    display: flex;
    flex-direction: column;
    background: var(--bg-color);
    overflow-y: auto;
}

/* Header */
.xpath-header[b-x4pktyvcfu] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    border-bottom: 3px solid #5a67d8;
}

.xpath-title[b-x4pktyvcfu] {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.xpath-title i[b-x4pktyvcfu] {
    font-size: 2.5rem;
}

.xpath-subtitle[b-x4pktyvcfu] {
    margin: 0.5rem 0 0 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Main Content Area - Split View */
.xpath-content[b-x4pktyvcfu] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    flex: 1;
    overflow: visible;
}

/* Left and Right Panels */
.xpath-left-panel[b-x4pktyvcfu],
.xpath-right-panel[b-x4pktyvcfu] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: visible;
}

/* Section Styling */
.xpath-section[b-x4pktyvcfu] {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.section-header[b-x4pktyvcfu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.section-header.clickable[b-x4pktyvcfu] {
    cursor: pointer;
    user-select: none;
}

.section-header.clickable:hover[b-x4pktyvcfu] {
    background: rgba(102, 126, 234, 0.05);
    border-radius: 8px;
    padding: 0.5rem;
    margin: -0.5rem;
    margin-bottom: 0.5rem;
}

.section-header h3[b-x4pktyvcfu] {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-header h3 i[b-x4pktyvcfu] {
    color: #667eea;
}

/* Button Groups */
.button-group-inline[b-x4pktyvcfu] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-small[b-x4pktyvcfu] {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s;
}

.btn-primary[b-x4pktyvcfu] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover:not(:disabled)[b-x4pktyvcfu] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

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

.btn-secondary:hover[b-x4pktyvcfu] {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-success[b-x4pktyvcfu] {
    background: #28a745;
    color: white;
}

.btn-success:hover[b-x4pktyvcfu] {
    background: #218838;
    transform: translateY(-2px);
}

.btn-small:disabled[b-x4pktyvcfu] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Textarea & Input */
.xpath-textarea[b-x4pktyvcfu] {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    resize: vertical;
    background: var(--input-bg);
    color: var(--text-color);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.xpath-textarea:focus[b-x4pktyvcfu] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.xpath-input[b-x4pktyvcfu] {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    background: var(--input-bg);
    color: var(--text-color);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.xpath-input:focus[b-x4pktyvcfu] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Persisted Data Indicator */
.persisted-data[b-x4pktyvcfu] {
    background: #f0f4ff;
    border-left: 4px solid #667eea !important;
}

[data-theme="dark"] .persisted-data[b-x4pktyvcfu] {
    background: #1a1f3a;
    border-left: 4px solid #667eea !important;
}

/* HTML Stats */
.html-stats[b-x4pktyvcfu] {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 6px;
    font-size: 0.9rem;
}

.html-stats span[b-x4pktyvcfu] {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.html-stats i[b-x4pktyvcfu] {
    color: #667eea;
}

.html-stats strong[b-x4pktyvcfu] {
    color: #667eea;
    font-weight: 700;
}

/* Strategy Selector */
.strategy-selector[b-x4pktyvcfu] {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.strategy-selector label[b-x4pktyvcfu] {
    font-weight: 600;
    color: var(--text-color);
}

.xpath-select[b-x4pktyvcfu] {
    flex: 1;
    padding: 0.5rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background: var(--input-bg);
    color: var(--text-color);
    font-size: 0.9rem;
    cursor: pointer;
}

.xpath-select:focus[b-x4pktyvcfu] {
    outline: none;
    border-color: #667eea;
}

/* Quick Actions */
.quick-actions[b-x4pktyvcfu] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-quick[b-x4pktyvcfu] {
    padding: 0.4rem 0.8rem;
    background: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-quick:hover[b-x4pktyvcfu] {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
}

[data-theme="dark"] .btn-quick[b-x4pktyvcfu] {
    background: #2d2d2d;
    border-color: #444;
    color: #e9ecef;
}

[data-theme="dark"] .btn-quick:hover[b-x4pktyvcfu] {
    background: #667eea;
    border-color: #667eea;
}

/* Possible XPaths Container */
.possible-xpaths-container[b-x4pktyvcfu] {
    margin-top: 1rem;
}

.filter-bar[b-x4pktyvcfu] {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.xpath-select-filter[b-x4pktyvcfu] {
    padding: 0.6rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background: var(--input-bg);
    color: var(--text-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.3s;
}

.xpath-select-filter:focus[b-x4pktyvcfu] {
    outline: none;
    border-color: #667eea;
}

.xpath-search-filter[b-x4pktyvcfu] {
    padding: 0.6rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background: var(--input-bg);
    color: var(--text-color);
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.xpath-search-filter:focus[b-x4pktyvcfu] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.possible-xpaths-list[b-x4pktyvcfu] {
    max-height: 500px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.5rem;
    background: rgba(102, 126, 234, 0.02);
    border-radius: 8px;
}

.possible-xpath-item[b-x4pktyvcfu] {
    position: relative;
    padding: 1rem;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.possible-xpath-item:hover[b-x4pktyvcfu] {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
    transform: translateX(5px);
}

.possible-xpath-item.has-id[b-x4pktyvcfu] {
    border-left: 4px solid #28a745;
}

.xpath-item-header[b-x4pktyvcfu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.xpath-type-badge[b-x4pktyvcfu] {
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-id[b-x4pktyvcfu] {
    background: #28a745;
    color: white;
}

.badge-class[b-x4pktyvcfu] {
    background: #17a2b8;
    color: white;
}

.badge-name[b-x4pktyvcfu] {
    background: #ffc107;
    color: #333;
}

.badge-text[b-x4pktyvcfu] {
    background: #6f42c1;
    color: white;
}

.badge-absolute[b-x4pktyvcfu] {
    background: #6c757d;
    color: white;
}

.badge-default[b-x4pktyvcfu] {
    background: #e9ecef;
    color: #495057;
}

.xpath-item-header i[b-x4pktyvcfu] {
    color: #ffc107;
    font-size: 1rem;
}

.xpath-expression[b-x4pktyvcfu] {
    display: block;
    padding: 0.5rem;
    background: rgba(102, 126, 234, 0.08);
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.5rem;
    word-break: break-all;
}

.xpath-item-preview[b-x4pktyvcfu] {
    font-size: 0.8rem;
    color: #6c757d;
    font-family: 'Courier New', monospace;
    margin-top: 0.4rem;
}

.xpath-item-preview small[b-x4pktyvcfu] {
    color: inherit;
}

.action-icon[b-x4pktyvcfu] {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.possible-xpath-item:hover .action-icon[b-x4pktyvcfu] {
    opacity: 1;
}

.more-results-notice[b-x4pktyvcfu] {
    text-align: center;
    padding: 0.75rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.more-results-notice i[b-x4pktyvcfu] {
    color: #667eea;
}

/* Recent XPaths */
.recent-xpaths[b-x4pktyvcfu] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.recent-xpath-item[b-x4pktyvcfu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem;
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.recent-xpath-item:hover[b-x4pktyvcfu] {
    background: rgba(102, 126, 234, 0.15);
    border-color: #667eea;
    transform: translateX(5px);
}

.recent-xpath-item code[b-x4pktyvcfu] {
    flex: 1;
    font-size: 0.85rem;
    color: var(--text-color);
}

.recent-xpath-item i[b-x4pktyvcfu] {
    color: #667eea;
    font-size: 1.2rem;
}

/* Syntax Reference */
.syntax-reference[b-x4pktyvcfu] {
    max-height: 500px;
    overflow-y: auto;
}

.syntax-category[b-x4pktyvcfu] {
    margin-bottom: 1.5rem;
}

.syntax-category h4[b-x4pktyvcfu] {
    margin: 0 0 0.75rem 0;
    color: #667eea;
    font-size: 1.1rem;
    font-weight: 700;
}

.syntax-item[b-x4pktyvcfu] {
    padding: 0.75rem;
    background: rgba(102, 126, 234, 0.03);
    border-left: 3px solid #667eea;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.syntax-item code[b-x4pktyvcfu] {
    background: rgba(102, 126, 234, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    color: #667eea;
}

.syntax-item span[b-x4pktyvcfu] {
    display: block;
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.syntax-item small[b-x4pktyvcfu] {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.8rem;
    color: #6c757d;
}

/* Validation Result */
.validation-result[b-x4pktyvcfu] {
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid;
}

.validation-result.valid[b-x4pktyvcfu] {
    background: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
}

.validation-result.invalid[b-x4pktyvcfu] {
    background: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
}

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

.validation-result.valid .validation-header i[b-x4pktyvcfu] {
    color: #28a745;
}

.validation-result.invalid .validation-header i[b-x4pktyvcfu] {
    color: #dc3545;
}

.error-message[b-x4pktyvcfu] {
    margin: 0.5rem 0;
    color: #dc3545;
    font-weight: 600;
}

.warnings[b-x4pktyvcfu], .suggestions[b-x4pktyvcfu] {
    margin-top: 0.75rem;
}

.warnings div[b-x4pktyvcfu], .suggestions div[b-x4pktyvcfu] {
    margin: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warnings i[b-x4pktyvcfu] {
    color: #ffc107;
}

.suggestions i[b-x4pktyvcfu] {
    color: #17a2b8;
}

/* Badge */
.badge[b-x4pktyvcfu] {
    background: #667eea;
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.badge-secondary[b-x4pktyvcfu] {
    background: #6c757d;
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Export Select */
.export-select[b-x4pktyvcfu] {
    padding: 0.4rem 0.6rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background: var(--input-bg);
    color: var(--text-color);
    font-size: 0.85rem;
    cursor: pointer;
}

.export-select:focus[b-x4pktyvcfu] {
    outline: none;
    border-color: #667eea;
}

/* No Results */
.no-results[b-x4pktyvcfu] {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
}

.no-results i[b-x4pktyvcfu] {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.no-results p[b-x4pktyvcfu] {
    margin: 0;
    font-size: 1.1rem;
}

/* Matched Elements */
.matched-elements[b-x4pktyvcfu] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.matched-element[b-x4pktyvcfu] {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    background: var(--card-bg);
    transition: all 0.2s;
}

.matched-element:hover[b-x4pktyvcfu] {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.element-header[b-x4pktyvcfu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.tag-name[b-x4pktyvcfu] {
    background: #667eea;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
}

.element-text[b-x4pktyvcfu] {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.element-text strong[b-x4pktyvcfu] {
    color: #667eea;
}

.element-attributes[b-x4pktyvcfu] {
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.element-attributes strong[b-x4pktyvcfu] {
    color: #667eea;
    display: block;
    margin-bottom: 0.3rem;
}

.attribute[b-x4pktyvcfu] {
    display: inline-block;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.2rem 0.5rem;
    margin: 0.2rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
}

.attribute-more[b-x4pktyvcfu] {
    display: inline-block;
    color: #6c757d;
    font-style: italic;
    margin-left: 0.5rem;
}

/* XPath Variations */
.xpath-variations[b-x4pktyvcfu] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.xpath-variation[b-x4pktyvcfu] {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 6px;
}

.xpath-variation label[b-x4pktyvcfu] {
    font-weight: 600;
    color: #667eea;
    font-size: 0.85rem;
}

.xpath-variation code[b-x4pktyvcfu] {
    background: rgba(102, 126, 234, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    word-break: break-all;
}

.xpath-variation code:hover[b-x4pktyvcfu] {
    background: rgba(102, 126, 234, 0.2);
}

.copy-icon[b-x4pktyvcfu] {
    color: #667eea;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
}

.copy-icon:hover[b-x4pktyvcfu] {
    color: #764ba2;
    transform: scale(1.2);
}

/* Suggested XPaths */
.suggested-xpaths[b-x4pktyvcfu] {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(23, 162, 184, 0.05);
    border-radius: 8px;
    border: 2px solid rgba(23, 162, 184, 0.2);
}

.suggested-xpaths h4[b-x4pktyvcfu] {
    margin: 0 0 0.75rem 0;
    color: #17a2b8;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.suggested-xpath[b-x4pktyvcfu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.suggested-xpath:hover[b-x4pktyvcfu] {
    background: rgba(23, 162, 184, 0.1);
    border-color: #17a2b8;
    transform: translateX(5px);
}

.suggested-xpath code[b-x4pktyvcfu] {
    flex: 1;
    font-size: 0.85rem;
}

.suggested-xpath i[b-x4pktyvcfu] {
    color: #17a2b8;
    font-size: 1.2rem;
}

/* Empty State */
.empty-state[b-x4pktyvcfu] {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

.empty-state i[b-x4pktyvcfu] {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.empty-state h3[b-x4pktyvcfu] {
    margin: 1rem 0;
    color: var(--text-color);
}

.empty-state p[b-x4pktyvcfu] {
    margin: 0.5rem 0 2rem 0;
    font-size: 1.1rem;
}

.feature-list[b-x4pktyvcfu] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.feature-item[b-x4pktyvcfu] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
    font-size: 0.95rem;
}

.feature-item i[b-x4pktyvcfu] {
    color: #28a745;
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .xpath-content[b-x4pktyvcfu] {
        grid-template-columns: 1fr;
    }

    .xpath-title[b-x4pktyvcfu] {
        font-size: 1.8rem;
    }

    .xpath-subtitle[b-x4pktyvcfu] {
        font-size: 0.95rem;
    }

    .section-header[b-x4pktyvcfu] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .button-group-inline[b-x4pktyvcfu] {
        width: 100%;
        justify-content: flex-start;
    }

    .quick-actions[b-x4pktyvcfu] {
        justify-content: flex-start;
    }

    .feature-list[b-x4pktyvcfu] {
        grid-template-columns: 1fr;
    }

    .xpath-variation[b-x4pktyvcfu] {
        grid-template-columns: 1fr;
    }

    .xpath-variation label[b-x4pktyvcfu] {
        font-weight: 700;
    }

    .filter-bar[b-x4pktyvcfu] {
        grid-template-columns: 1fr;
    }

    .possible-xpaths-list[b-x4pktyvcfu] {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .xpath-header[b-x4pktyvcfu] {
        padding: 1.5rem 1rem;
    }

    .xpath-title[b-x4pktyvcfu] {
        font-size: 1.5rem;
    }

    .xpath-content[b-x4pktyvcfu] {
        padding: 1rem;
    }

    .xpath-section[b-x4pktyvcfu] {
        padding: 1rem;
    }
}

/* ===================================
   QUICK GUIDE MODAL
   =================================== */

.modal-overlay[b-x4pktyvcfu] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn-b-x4pktyvcfu 0.2s ease;
}

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

@keyframes scaleIn-b-x4pktyvcfu {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-container.guide-modal[b-x4pktyvcfu] {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn-b-x4pktyvcfu 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .modal-container.guide-modal[b-x4pktyvcfu] {
    background: #2d2d2d;
}

.guide-modal .modal-header[b-x4pktyvcfu] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-modal .modal-header h5[b-x4pktyvcfu] {
    margin: 0;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guide-modal .btn-close[b-x4pktyvcfu] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guide-modal .btn-close:hover[b-x4pktyvcfu] {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.guide-modal .modal-body[b-x4pktyvcfu] {
    padding: 2rem;
    max-height: calc(85vh - 180px);
    overflow-y: auto;
}

.guide-body[b-x4pktyvcfu] {
    padding: 0;
}

.guide-intro[b-x4pktyvcfu] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.guide-intro p[b-x4pktyvcfu] {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.guide-section[b-x4pktyvcfu] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.guide-step[b-x4pktyvcfu] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid #6366f1;
    transition: all 0.2s ease;
}

[data-theme="dark"] .guide-step[b-x4pktyvcfu] {
    background: #2d2d2d;
    border-left-color: #8b5cf6;
}

.guide-step:hover[b-x4pktyvcfu] {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number[b-x4pktyvcfu] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.step-content[b-x4pktyvcfu] {
    flex: 1;
}

.step-content h6[b-x4pktyvcfu] {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .step-content h6[b-x4pktyvcfu] {
    color: #e5e7eb;
}

.step-content h6 i[b-x4pktyvcfu] {
    font-size: 1.1rem;
}

.step-content p[b-x4pktyvcfu] {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

[data-theme="dark"] .step-content p[b-x4pktyvcfu] {
    color: #9ca3af;
}

.guide-tips[b-x4pktyvcfu] {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1.25rem;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
}

[data-theme="dark"] .guide-tips[b-x4pktyvcfu] {
    background: linear-gradient(135deg, #78350f, #92400e);
    border-left-color: #fbbf24;
}

.guide-tips h6[b-x4pktyvcfu] {
    margin: 0 0 0.75rem 0;
    font-weight: 700;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .guide-tips h6[b-x4pktyvcfu] {
    color: #fbbf24;
}

.guide-tips h6 i[b-x4pktyvcfu] {
    color: #f59e0b;
}

[data-theme="dark"] .guide-tips h6 i[b-x4pktyvcfu] {
    color: #fbbf24;
}

.guide-tips ul[b-x4pktyvcfu] {
    margin: 0;
    padding-left: 1.5rem;
}

.guide-tips li[b-x4pktyvcfu] {
    color: #78350f;
    font-size: 0.9rem;
    line-height: 1.8;
}

[data-theme="dark"] .guide-tips li[b-x4pktyvcfu] {
    color: #fde68a;
}

.guide-tips strong[b-x4pktyvcfu] {
    color: #92400e;
    font-weight: 600;
}

[data-theme="dark"] .guide-tips strong[b-x4pktyvcfu] {
    color: #fbbf24;
}

.guide-modal .modal-footer[b-x4pktyvcfu] {
    padding: 1.5rem 2rem;
    background: #f9fafb;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    border-top: 2px solid #e5e7eb;
}

[data-theme="dark"] .guide-modal .modal-footer[b-x4pktyvcfu] {
    background: #1a1a1a;
    border-top-color: #444;
}

.guide-modal .btn-secondary[b-x4pktyvcfu] {
    padding: 0.75rem 1.5rem;
    border: 2px solid #6366f1;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #6366f1;
}

[data-theme="dark"] .guide-modal .btn-secondary[b-x4pktyvcfu] {
    background: #2d2d2d;
    color: #818cf8;
    border-color: #818cf8;
}

.guide-modal .btn-secondary:hover[b-x4pktyvcfu] {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

[data-theme="dark"] .guide-modal .btn-secondary:hover[b-x4pktyvcfu] {
    background: #818cf8;
    color: white;
}

/* Text color helpers */
.text-success[b-x4pktyvcfu] {
    color: #10b981;
}

.text-primary[b-x4pktyvcfu] {
    color: #3b82f6;
}

.text-info[b-x4pktyvcfu] {
    color: #06b6d4;
}

.text-warning[b-x4pktyvcfu] {
    color: #f59e0b;
}

/* Mobile responsiveness for guide */
@media (max-width: 768px) {
    .guide-modal .modal-container[b-x4pktyvcfu] {
        max-width: 95%;
        max-height: 90vh;
    }

    .guide-step[b-x4pktyvcfu] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .step-number[b-x4pktyvcfu] {
        align-self: flex-start;
    }

    .page-header .header-content[b-x4pktyvcfu] {
        flex-direction: column;
    }

    .page-title[b-x4pktyvcfu] {
        font-size: 1.8rem;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.app-container[b-cty8pqk095] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-secondary);
}

/* Update Notification Banner */
.update-notification-banner[b-cty8pqk095] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    position: sticky;
    top: 0;
    z-index: 1001;
    animation: slideDown-b-cty8pqk095 0.5s ease-out;
}

@keyframes slideDown-b-cty8pqk095 {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.update-content[b-cty8pqk095] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    color: white;
    flex-wrap: wrap;
}

.update-icon[b-cty8pqk095] {
    font-size: 1.25rem;
    animation: rotate-b-cty8pqk095 2s linear infinite;
}

@keyframes rotate-b-cty8pqk095 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.update-message[b-cty8pqk095] {
    font-size: 0.95rem;
    line-height: 1.4;
}

.update-message strong[b-cty8pqk095] {
    font-weight: 700;
}

.update-btn[b-cty8pqk095] {
    background: rgba(255, 255, 255, 0.95);
    color: #667eea;
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.update-btn:hover[b-cty8pqk095] {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.update-btn i[b-cty8pqk095] {
    font-size: 1rem;
}

.dismiss-btn[b-cty8pqk095] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin-left: auto;
}

.dismiss-btn:hover[b-cty8pqk095] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.dismiss-btn i[b-cty8pqk095] {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .update-content[b-cty8pqk095] {
        gap: 0.75rem;
        padding: 0.6rem 1rem;
    }

    .update-message[b-cty8pqk095] {
        font-size: 0.85rem;
        flex: 1;
    }

    .update-btn[b-cty8pqk095] {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    .dismiss-btn[b-cty8pqk095] {
        width: 28px;
        height: 28px;
        margin-left: 0.5rem;
    }
}

@media (max-width: 480px) {
    .update-content[b-cty8pqk095] {
        gap: 0.5rem;
        padding: 0.5rem 0.75rem;
    }

    .update-icon[b-cty8pqk095] {
        font-size: 1rem;
    }

    .update-message[b-cty8pqk095] {
        font-size: 0.75rem;
        flex: 1;
    }

    .update-message strong[b-cty8pqk095] {
        display: block;
    }

    .update-btn[b-cty8pqk095] {
        padding: 0.35rem 0.85rem;
        font-size: 0.75rem;
    }

    .dismiss-btn[b-cty8pqk095] {
        width: 26px;
        height: 26px;
    }

    .dismiss-btn i[b-cty8pqk095] {
        font-size: 0.8rem;
    }
}

.top-navbar[b-cty8pqk095] {
    background: var(--gradient-royal);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    width: 100%;
}

.navbar-content[b-cty8pqk095] {
    width: 100%;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    position: relative;
}

.brand[b-cty8pqk095] {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white !important;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    transition: all var(--transition-base);
    flex: 0 0 auto;
    z-index: 2;
    gap: 0.75rem;
}

.brand-text-container[b-cty8pqk095] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    line-height: 1;
}

.badges-container[b-cty8pqk095] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.15rem;
}

.brand-logo[b-cty8pqk095] {
    height: 36px;
    width: 36px;
    object-fit: contain;
    transition: transform var(--transition-bounce);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.brand:hover .brand-logo[b-cty8pqk095] {
    transform: rotate(10deg) scale(1.1);
}

.brand-icon[b-cty8pqk095] {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.brand:hover[b-cty8pqk095] {
    color: #fff !important;
    text-decoration: none;
    transform: scale(1.02);
}

.brand-text[b-cty8pqk095] {
    white-space: nowrap;
    color: white !important;
}

.brand-tld[b-cty8pqk095] {
    color: #FFD700;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.brand-tagline[b-cty8pqk095] {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 0.15rem;
    white-space: nowrap;
}

.beta-badge[b-cty8pqk095] {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.5);
    color: #FFD700;
    font-size: 0.5rem;
    font-weight: 600;
    padding: 0.08rem 0.35rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.15);
    animation: pulse-beta-b-cty8pqk095 2s ease-in-out infinite;
}

.version-badge[b-cty8pqk095] {
    display: inline-block;
    background: rgba(147, 197, 253, 0.2);
    border: 1px solid rgba(147, 197, 253, 0.5);
    color: #93C5FD;
    font-size: 0.5rem;
    font-weight: 600;
    padding: 0.08rem 0.35rem;
    border-radius: 8px;
    letter-spacing: 0.3px;
    box-shadow: 0 0 8px rgba(147, 197, 253, 0.15);
}

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

.center-title[b-cty8pqk095] {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.title-badge[b-cty8pqk095] {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.title-badge[b-cty8pqk095]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.title-badge:hover[b-cty8pqk095]::before {
    left: 100%;
}

.title-badge-icon[b-cty8pqk095] {
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.navbar-actions[b-cty8pqk095] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.75rem;
    flex: 0 0 auto;
    z-index: 2;
}

.action-btn[b-cty8pqk095] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    color: white !important;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.action-btn:hover[b-cty8pqk095] {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.action-btn i[b-cty8pqk095] {
    font-size: 1.1rem;
}

.feedback-btn[b-cty8pqk095] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    padding: 0.5rem 1.25rem;
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-base);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.feedback-btn:hover[b-cty8pqk095] {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.feedback-btn i[b-cty8pqk095] {
    font-size: 1rem;
    opacity: 0.9;
}

.about-btn[b-cty8pqk095] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    padding: 0.5rem 1.25rem;
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-base);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.about-btn:hover[b-cty8pqk095] {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.about-btn i[b-cty8pqk095] {
    font-size: 1rem;
    opacity: 0.9;
}

.horizontal-nav[b-cty8pqk095] {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    z-index: 2;
}

.nav-item[b-cty8pqk095] {
    color: rgba(255,255,255,0.9) !important;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    white-space: nowrap;
}

.nav-item:hover[b-cty8pqk095] {
    background: rgba(255,255,255,0.2);
    color: white !important;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.3);
}

.main-content[b-cty8pqk095] {
    flex: 1;
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

.main-content:has(.timer-tool-container)[b-cty8pqk095] {
    padding: 0;
    margin: 0;
    max-width: none;
    width: 100%;
    height: calc(100vh - 50px);
    overflow: hidden;
}

.main-content:has(.timer-tool-container) .timer-tool-container[b-cty8pqk095] {
    height: calc(100vh - 50px);
}

.main-content:has(.guid-tool-root)[b-cty8pqk095] {
    padding: 0;
    margin: 0;
    max-width: none;
    width: 100%;
    height: calc(100vh - 50px);
    overflow: hidden;
}

@media (max-width: 1200px) {
    .main-content[b-cty8pqk095] {
        padding: 0;
    }

    .main-content:has(.timer-tool-container)[b-cty8pqk095] {
        padding: 0;
        margin: 0;
        height: calc(100vh - 50px);
    }

    .main-content:has(.guid-tool-root)[b-cty8pqk095] {
        padding: 0;
        margin: 0;
        height: calc(100vh - 50px);
    }
}

@media (max-width: 768px) {
    .navbar-content[b-cty8pqk095] {
        padding: 0 0.5rem;
    }

    .brand[b-cty8pqk095] {
        font-size: 1.1rem;
    }

    .brand-logo[b-cty8pqk095] {
        height: 28px;
        width: 28px;
    }

    .brand-icon[b-cty8pqk095] {
        font-size: 1.3rem;
    }

    .brand-tagline[b-cty8pqk095] {
        font-size: 0.55rem;
        margin-top: 0.1rem;
    }

    .beta-badge[b-cty8pqk095] {
        font-size: 0.45rem;
        padding: 0.06rem 0.3rem;
    }

    .version-badge[b-cty8pqk095] {
        font-size: 0.45rem;
        padding: 0.06rem 0.3rem;
    }

    .badges-container[b-cty8pqk095] {
        gap: 0.35rem;
        margin-top: 0.1rem;
    }

    .title-badge[b-cty8pqk095] {
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem;
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .title-badge-icon[b-cty8pqk095] {
        font-size: 0.8rem;
    }

    .nav-item[b-cty8pqk095] {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .navbar-actions[b-cty8pqk095] {
        gap: 0.4rem;
        margin-left: 0.5rem;
    }

    .action-btn[b-cty8pqk095] {
        width: 34px;
        height: 34px;
    }

    .action-btn i[b-cty8pqk095] {
        font-size: 1rem;
    }

    .feedback-btn[b-cty8pqk095] {
        padding: 0.35rem 0.75rem;
        gap: 0.4rem;
        font-size: 0.85rem;
    }

    .feedback-btn i[b-cty8pqk095] {
        font-size: 0.9rem;
    }

    .about-btn[b-cty8pqk095] {
        padding: 0.35rem 0.75rem;
        gap: 0.4rem;
        font-size: 0.85rem;
    }

    .about-btn i[b-cty8pqk095] {
        font-size: 0.9rem;
    }

    .main-content[b-cty8pqk095] {
        padding: 0;
    }

    .main-content:has(.timer-tool-container)[b-cty8pqk095] {
        padding: 0;
        margin: 0;
        height: calc(100vh - 50px);
    }

    .main-content:has(.guid-tool-root)[b-cty8pqk095] {
        padding: 0;
        margin: 0;
        height: calc(100vh - 50px);
    }
}

@media (max-width: 576px) {
    .navbar-content[b-cty8pqk095] {
        height: 48px;
    }

    .brand[b-cty8pqk095] {
        font-size: 1rem;
    }

    .brand-logo[b-cty8pqk095] {
        height: 26px;
        width: 26px;
    }

    .brand-tagline[b-cty8pqk095] {
        font-size: 0.52rem;
        margin-top: 0.08rem;
    }

    .beta-badge[b-cty8pqk095] {
        font-size: 0.42rem;
        padding: 0.055rem 0.28rem;
    }

    .version-badge[b-cty8pqk095] {
        font-size: 0.42rem;
        padding: 0.055rem 0.28rem;
    }

    .badges-container[b-cty8pqk095] {
        gap: 0.32rem;
        margin-top: 0.09rem;
    }

    .title-badge[b-cty8pqk095] {
        font-size: 0.85rem;
        padding: 0.35rem 1.1rem;
        max-width: 160px;
    }

    .nav-item[b-cty8pqk095] {
        padding: 0.35rem 0.75rem;
        font-size: 0.8rem;
    }

    .navbar-actions[b-cty8pqk095] {
        gap: 0.35rem;
        margin-left: 0.4rem;
    }

    .action-btn[b-cty8pqk095] {
        width: 32px;
        height: 32px;
    }

    .action-btn i[b-cty8pqk095] {
        font-size: 0.95rem;
    }

    .feedback-btn[b-cty8pqk095] {
        padding: 0.3rem 0.65rem;
        gap: 0.35rem;
        font-size: 0.8rem;
    }

    .feedback-btn i[b-cty8pqk095] {
        font-size: 0.85rem;
    }

    .about-btn[b-cty8pqk095] {
        padding: 0.3rem 0.65rem;
        gap: 0.35rem;
        font-size: 0.8rem;
    }

    .about-btn i[b-cty8pqk095] {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .navbar-content[b-cty8pqk095] {
        height: 46px;
        padding: 0 0.4rem;
    }

    .brand[b-cty8pqk095] {
        font-size: 0.95rem;
    }

    .brand-logo[b-cty8pqk095] {
        height: 24px;
        width: 24px;
    }

    .brand-tagline[b-cty8pqk095] {
        font-size: 0.48rem;
        margin-top: 0.07rem;
    }

    .title-badge[b-cty8pqk095] {
        font-size: 0.75rem;
        padding: 0.3rem 0.9rem;
        max-width: 130px;
    }

    .title-badge-icon[b-cty8pqk095] {
        margin-right: 0.3rem;
        font-size: 0.7rem;
    }

    .nav-item[b-cty8pqk095] {
        padding: 0.3rem 0.65rem;
        font-size: 0.75rem;
    }

    .navbar-actions[b-cty8pqk095] {
        gap: 0.3rem;
        margin-left: 0.35rem;
    }

    .action-btn[b-cty8pqk095] {
        width: 30px;
        height: 30px;
    }

    .action-btn i[b-cty8pqk095] {
        font-size: 0.9rem;
    }

    .feedback-btn[b-cty8pqk095] {
        padding: 0.25rem 0.55rem;
        gap: 0.3rem;
        font-size: 0.75rem;
    }

    .feedback-btn i[b-cty8pqk095] {
        font-size: 0.8rem;
    }

    .feedback-text[b-cty8pqk095] {
        display: none;
    }

    .about-btn[b-cty8pqk095] {
        padding: 0.25rem 0.55rem;
        gap: 0.3rem;
        font-size: 0.75rem;
    }

    .about-btn i[b-cty8pqk095] {
        font-size: 0.8rem;
    }

    .about-text[b-cty8pqk095] {
        display: none;
    }

    .main-content[b-cty8pqk095] {
        padding: 0;
    }
}

@media (max-width: 360px) {
    .brand[b-cty8pqk095] {
        font-size: 0.85rem;
    }

    .brand-logo[b-cty8pqk095] {
        height: 22px;
        width: 22px;
    }

    .brand-tagline[b-cty8pqk095] {
        font-size: 0.45rem;
        margin-top: 0.06rem;
    }

    .title-badge[b-cty8pqk095] {
        font-size: 0.7rem;
        padding: 0.25rem 0.75rem;
        max-width: 110px;
    }

    .nav-item[b-cty8pqk095] {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }

    .navbar-actions[b-cty8pqk095] {
        gap: 0.25rem;
        margin-left: 0.25rem;
    }

    .action-btn[b-cty8pqk095] {
        width: 28px;
        height: 28px;
    }

    .action-btn i[b-cty8pqk095] {
        font-size: 0.85rem;
    }

    .feedback-btn[b-cty8pqk095] {
        padding: 0.2rem 0.45rem;
        gap: 0.25rem;
        font-size: 0.7rem;
    }

    .feedback-btn i[b-cty8pqk095] {
        font-size: 0.75rem;
    }

    .feedback-text[b-cty8pqk095] {
        display: none;
    }

    .about-btn[b-cty8pqk095] {
        padding: 0.2rem 0.45rem;
        gap: 0.25rem;
        font-size: 0.7rem;
    }

    .about-btn i[b-cty8pqk095] {
        font-size: 0.75rem;
    }

    .about-text[b-cty8pqk095] {
        display: none;
    }

    .beta-badge[b-cty8pqk095] {
        font-size: 0.35rem;
        padding: 0.04rem 0.2rem;
    }

    .version-badge[b-cty8pqk095] {
        font-size: 0.35rem;
        padding: 0.04rem 0.2rem;
    }

    .badges-container[b-cty8pqk095] {
        gap: 0.25rem;
        margin-top: 0.05rem;
    }
}
/* /Pages/About.razor.rz.scp.css */
.about-page[b-36zjew8t7d] {
    min-height: calc(100vh - 50px);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow-x: hidden;
}

.about-hero[b-36zjew8t7d] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.about-hero[b-36zjew8t7d]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.about-content[b-36zjew8t7d] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.profile-section[b-36zjew8t7d] {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    text-align: center;
}

.profile-avatar[b-36zjew8t7d] {
    position: relative;
}

.avatar-placeholder[b-36zjew8t7d] {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.avatar-initials[b-36zjew8t7d] {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-info[b-36zjew8t7d] {
    flex: 1;
    max-width: 600px;
}

.profile-name[b-36zjew8t7d] {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.profile-title[b-36zjew8t7d] {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0 0 1rem 0;
    opacity: 0.9;
}

.profile-tagline[b-36zjew8t7d] {
    font-size: 1.1rem;
    opacity: 0.8;
    font-style: italic;
    margin: 0;
}

.about-body[b-36zjew8t7d] {
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.content-grid[b-36zjew8t7d] {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: stretch;
}

/* Smart layout based on content */
.content-card:nth-child(1)[b-36zjew8t7d] {
    /* About Me - spans 3 columns */
    grid-column: span 3;
}

.content-card:nth-child(2)[b-36zjew8t7d] {
    /* About HeyTools - spans 3 columns */
    grid-column: span 3;
}

.content-card:nth-child(3)[b-36zjew8t7d] {
    /* Security & Privacy - spans full width (6 columns) for better readability */
    grid-column: span 6;
}

.content-card:nth-child(4)[b-36zjew8t7d] {
    /* Feedback - spans 3 columns */
    grid-column: span 3;
}

.content-card:nth-child(5)[b-36zjew8t7d] {
    /* Connect - spans 3 columns */
    grid-column: span 3;
}

.content-card[b-36zjew8t7d] {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card[b-36zjew8t7d]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.content-card:hover[b-36zjew8t7d]::before {
    transform: scaleX(1);
}

.content-card:hover[b-36zjew8t7d] {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-title[b-36zjew8t7d] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1.5rem 0;
}

.card-icon[b-36zjew8t7d] {
    font-size: 1.5rem;
    opacity: 0.8;
}

.card-logo-icon[b-36zjew8t7d] {
    width: 32px;
    height: 32px;
    object-fit: contain;
    opacity: 0.9;
}

.card-content h5[b-36zjew8t7d] {
    color: #667eea;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
}

.card-content h5:first-child[b-36zjew8t7d] {
    margin-top: 0;
}

.card-content p[b-36zjew8t7d] {
    color: #4a5568;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.card-content p:last-child[b-36zjew8t7d] {
    margin-bottom: 0;
}

.card-content ul[b-36zjew8t7d] {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.card-content ul li[b-36zjew8t7d] {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.card-content ul li:last-child[b-36zjew8t7d] {
    margin-bottom: 0;
}

.tech-tags[b-36zjew8t7d] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag[b-36zjew8t7d] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
}

.project-list[b-36zjew8t7d] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-list li[b-36zjew8t7d] {
    padding: 0.5rem 0;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
}

.repo-list[b-36zjew8t7d] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.repo-item[b-36zjew8t7d] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid #667eea;
}

.repo-item:hover[b-36zjew8t7d] {
    background: #edf2f7;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.repo-name[b-36zjew8t7d] {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95rem;
}

.repo-description[b-36zjew8t7d] {
    color: #718096;
    font-size: 0.85rem;
}

.philosophy-card[b-36zjew8t7d] {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.philosophy-grid[b-36zjew8t7d] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.philosophy-item[b-36zjew8t7d] {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.philosophy-item h5[b-36zjew8t7d] {
    font-size: 1rem;
    margin: 0 0 0.75rem 0;
    color: #2d3748;
}

.philosophy-item p[b-36zjew8t7d] {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

.contact-card[b-36zjew8t7d] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-card .card-title[b-36zjew8t7d],
.contact-card .card-content p[b-36zjew8t7d] {
    color: white;
}

.contact-links[b-36zjew8t7d] {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-link[b-36zjew8t7d] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-link:hover[b-36zjew8t7d] {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.contact-icon[b-36zjew8t7d] {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .content-grid[b-36zjew8t7d] {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-card:nth-child(1)[b-36zjew8t7d] {
        /* About Me - spans 1 column */
        grid-column: span 1;
    }

    .content-card:nth-child(2)[b-36zjew8t7d] {
        /* About HeyTools - spans 1 column */
        grid-column: span 1;
    }

    .content-card:nth-child(3)[b-36zjew8t7d] {
        /* Security & Privacy - spans full width (2 columns) */
        grid-column: span 2;
    }

    .content-card:nth-child(4)[b-36zjew8t7d] {
        /* Feedback - spans 1 column */
        grid-column: span 1;
    }

    .content-card:nth-child(5)[b-36zjew8t7d] {
        /* Connect - spans 1 column */
        grid-column: span 1;
    }
}

@media (max-width: 900px) {
    .content-grid[b-36zjew8t7d] {
        grid-template-columns: 1fr;
    }

    .content-card:nth-child(1)[b-36zjew8t7d],
    .content-card:nth-child(2)[b-36zjew8t7d],
    .content-card:nth-child(3)[b-36zjew8t7d],
    .content-card:nth-child(4)[b-36zjew8t7d],
    .content-card:nth-child(5)[b-36zjew8t7d] {
        /* All cards full width on mobile */
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .about-hero[b-36zjew8t7d] {
        padding: 2rem 0;
    }

    .about-content[b-36zjew8t7d] {
        padding: 0 1rem;
    }

    .profile-section[b-36zjew8t7d] {
        flex-direction: column;
        gap: 1.5rem;
    }

    .avatar-placeholder[b-36zjew8t7d] {
        width: 100px;
        height: 100px;
    }

    .avatar-initials[b-36zjew8t7d] {
        font-size: 2rem;
    }

    .profile-name[b-36zjew8t7d] {
        font-size: 2rem;
    }

    .profile-title[b-36zjew8t7d] {
        font-size: 1.1rem;
    }

    .about-body[b-36zjew8t7d] {
        padding: 2rem 1rem;
    }

    .content-grid[b-36zjew8t7d] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .content-card[b-36zjew8t7d] {
        padding: 1.5rem;
    }

    .philosophy-grid[b-36zjew8t7d] {
        grid-template-columns: 1fr;
    }

    .contact-links[b-36zjew8t7d] {
        flex-direction: column;
    }
}
/* /Pages/Home.razor.rz.scp.css */
/* Modern Hero Section - Vibrant & Engaging */
.hero-container[b-1c4lsw6z24] {
    background: var(--gradient-royal);
    color: white;
    padding: 1.5rem 0;
    margin: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-container[b-1c4lsw6z24]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse-glow-b-1c4lsw6z24 4s ease-in-out infinite;
}

@keyframes pulse-glow-b-1c4lsw6z24 {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content[b-1c4lsw6z24] {
    max-width: 100%;
    margin: 0;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.hero-left-content[b-1c4lsw6z24] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-row-1[b-1c4lsw6z24] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero-row-2[b-1c4lsw6z24] {
    display: flex;
    align-items: center;
}

.hero-badge[b-1c4lsw6z24] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: var(--shadow-md);
    animation: badge-pulse-b-1c4lsw6z24 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes badge-pulse-b-1c4lsw6z24 {
    0%, 100% {
        box-shadow: var(--shadow-md);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 24px rgba(255, 255, 255, 0.35);
        transform: scale(1.02);
    }
}

.badge-icon[b-1c4lsw6z24] {
    font-size: 1rem;
    animation: rotate-b-1c4lsw6z24 3s ease-in-out infinite;
}

@keyframes rotate-b-1c4lsw6z24 {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

.badge-text[b-1c4lsw6z24] {
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title[b-1c4lsw6z24] {
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.highlight-text[b-1c4lsw6z24] {
    background: linear-gradient(135deg, #ffd89b 0%, #ffe4a1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-description[b-1c4lsw6z24] {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.95;
    flex-shrink: 0;
}

.hero-description strong[b-1c4lsw6z24] {
    font-weight: 700;
    color: #ffd89b;
}

/* Privacy Features Grid - 2x2 on Right */
.privacy-features-grid[b-1c4lsw6z24] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    flex-shrink: 0;
    max-width: 400px;
}

.privacy-feature[b-1c4lsw6z24] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: left;
    min-height: 40px;
}

.privacy-feature:hover[b-1c4lsw6z24] {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon[b-1c4lsw6z24] {
    font-size: 1.1rem;
    color: #ffd89b;
    flex-shrink: 0;
}

.feature-text[b-1c4lsw6z24] {
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

/* Modern Tools Showcase Section */
.tools-showcase[b-1c4lsw6z24] {
    padding: 3rem 0;
    background: var(--bg-secondary);
    width: 100%;
}

.tools-container[b-1c4lsw6z24] {
    max-width: 100%;
    margin: 0;
    padding: 0 1.5rem;
}

.section-header[b-1c4lsw6z24] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-title[b-1c4lsw6z24] {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
    background: var(--gradient-royal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Search Container Styles */
.search-container[b-1c4lsw6z24] {
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    padding: 0 1rem;
}

.search-input-wrapper[b-1c4lsw6z24] {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-primary);
    transition: all var(--transition-base);
}

.search-input-wrapper:focus-within[b-1c4lsw6z24] {
    border-color: var(--primary-500);
    box-shadow: var(--shadow-lg), 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.search-icon[b-1c4lsw6z24] {
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
    color: var(--text-secondary);
    pointer-events: none;
}

.search-input[b-1c4lsw6z24] {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
    font-family: inherit;
}

.search-input[b-1c4lsw6z24]::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.clear-search-btn[b-1c4lsw6z24] {
    position: absolute;
    right: 0.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    border-radius: var(--radius-md);
}

.clear-search-btn:hover[b-1c4lsw6z24] {
    color: var(--primary-600);
    background: rgba(99, 102, 241, 0.1);
}

.no-results-message[b-1c4lsw6z24] {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-500);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.no-results-message i[b-1c4lsw6z24] {
    font-size: 1.3rem;
    color: var(--primary-500);
}

.no-results-message strong[b-1c4lsw6z24] {
    color: var(--text-primary);
    font-weight: 600;
}

.search-results-count[b-1c4lsw6z24] {
    margin-top: 0.75rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.search-results-count strong[b-1c4lsw6z24] {
    color: var(--primary-600);
    font-weight: 700;
}

/* Category Section Styles */
.category-section[b-1c4lsw6z24] {
    margin-bottom: 2.5rem;
}

.category-section:last-child[b-1c4lsw6z24] {
    margin-bottom: 0;
}

.category-header[b-1c4lsw6z24] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-500);
}

.category-icon[b-1c4lsw6z24] {
    font-size: 1.5rem;
    color: var(--primary-600);
    filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.2));
}

.category-title[b-1c4lsw6z24] {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.02em;
}

.internet-required-badge[b-1c4lsw6z24] {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-royal);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-md);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-left: auto;
    box-shadow: var(--shadow-sm);
}

/* Tools Grid - 8 Cards Per Row */
.tools-grid[b-1c4lsw6z24] {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1rem;
    align-items: start;
}

/* Remove Card Wrapper Styles */

/* Modern Tool Cards with Stunning Hover Effects */
.standard-card[b-1c4lsw6z24] {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 0;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1.5px solid var(--border-primary);
    position: relative;
    overflow: hidden;
}

.standard-card[b-1c4lsw6z24]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-royal);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

/* Stunning Hover Effect - Gradient Glow */
.standard-card:hover[b-1c4lsw6z24] {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl), 0 0 30px rgba(99, 102, 241, 0.3);
    border-color: var(--primary-400);
}

.standard-card:hover[b-1c4lsw6z24]::before {
    opacity: 0.05;
}

/* Card Glow - Animated Background */
.card-glow[b-1c4lsw6z24] {
    display: none;
}

/* Card Content */
.card-content[b-1c4lsw6z24] {
    padding: 1.5rem 1rem;
    position: relative;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.tool-content[b-1c4lsw6z24] {
    text-align: center;
    position: relative;
}

.tool-icon[b-1c4lsw6z24] {
    font-size: 2rem;
    background: var(--gradient-royal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    display: block;
    transition: all var(--transition-bounce);
    filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.2));
}

.standard-card:hover .tool-icon[b-1c4lsw6z24] {
    transform: scale(1.2) rotate(8deg);
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.4));
}

.tool-title[b-1c4lsw6z24] {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    transition: all var(--transition-base);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.standard-card:hover .tool-title[b-1c4lsw6z24] {
    color: var(--primary-600);
}

/* Corner Decoration */
.card-corner-decoration[b-1c4lsw6z24] {
    display: none;
}

/* Favorite Button Styling - Ultra Minimal (Appears on Card Hover Only) */
.favorite-btn[b-1c4lsw6z24] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(200, 200, 200, 0.4);
    border-radius: var(--radius-full);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
    padding: 0;
    color: var(--neutral-400);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
}

/* Show star button on card hover OR when favorited */
.standard-card:hover .favorite-btn[b-1c4lsw6z24],
.favorite-btn.favorited[b-1c4lsw6z24] {
    opacity: 1;
    pointer-events: auto;
}

.favorite-btn:hover[b-1c4lsw6z24] {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-color: #fbbf24;
    color: white;
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 3px 10px rgba(251, 191, 36, 0.4);
}

.favorite-btn.favorited[b-1c4lsw6z24] {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-color: #fbbf24;
    color: white;
    animation: favoriteAdded-b-1c4lsw6z24 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.favorite-btn.favorited:hover[b-1c4lsw6z24] {
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 3px 10px rgba(251, 191, 36, 0.5);
}

.favorite-btn i[b-1c4lsw6z24] {
    font-size: 0.7rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.favorite-btn:active[b-1c4lsw6z24] {
    transform: scale(0.95);
}

@keyframes favoriteAdded-b-1c4lsw6z24 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15) rotate(12deg);
    }
    100% {
        transform: scale(1);
    }
}

/* Dark Mode Favorite Button */
[data-theme="dark"] .favorite-btn[b-1c4lsw6z24] {
    background: rgba(45, 45, 45, 0.95);
    border-color: rgba(100, 100, 100, 0.4);
    color: var(--neutral-400);
}

[data-theme="dark"] .favorite-btn:hover[b-1c4lsw6z24] {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-color: #fbbf24;
    color: white;
}

[data-theme="dark"] .favorite-btn.favorited[b-1c4lsw6z24] {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-color: #fbbf24;
    color: white;
}

/* Favorites Section Styling - Enhanced */
.favorites-section[b-1c4lsw6z24] {
    border-left: 5px solid var(--color-warning);
    padding: 1rem;
    padding-left: 1.5rem;
    background: linear-gradient(to right, rgba(251, 191, 36, 0.08), rgba(251, 191, 36, 0.02));
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.1);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.favorites-section[b-1c4lsw6z24]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.favorites-section .category-header[b-1c4lsw6z24] {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05));
    border-left: none;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.favorite-tool-card[b-1c4lsw6z24] {
    border: 2px solid rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), rgba(251, 191, 36, 0.02));
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.15);
    position: relative;
}

.favorite-tool-card[b-1c4lsw6z24]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    opacity: 0.6;
}

.favorite-tool-card:hover[b-1c4lsw6z24] {
    box-shadow: var(--shadow-2xl), 0 0 30px rgba(251, 191, 36, 0.4);
    border-color: var(--color-warning);
    transform: translateY(-10px) scale(1.03);
}

/* Dark Mode Favorites Section */
[data-theme="dark"] .favorites-section[b-1c4lsw6z24] {
    background: linear-gradient(to right, rgba(251, 191, 36, 0.12), rgba(251, 191, 36, 0.03));
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.15);
}

[data-theme="dark"] .favorites-section .category-header[b-1c4lsw6z24] {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.08));
    border-color: rgba(251, 191, 36, 0.4);
}

[data-theme="dark"] .favorite-tool-card[b-1c4lsw6z24] {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(251, 191, 36, 0.04));
    border-color: rgba(251, 191, 36, 0.5);
}

/* Responsive Design */
@media (max-width: 1600px) {
    .tools-grid[b-1c4lsw6z24] {
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 1200px) {
    .tools-grid[b-1c4lsw6z24] {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .hero-content[b-1c4lsw6z24] {
        gap: 2rem;
    }

    .hero-row-1[b-1c4lsw6z24] {
        gap: 1rem;
    }

    .hero-title[b-1c4lsw6z24] {
        font-size: 1.2rem;
    }

    .hero-description[b-1c4lsw6z24] {
        font-size: 0.85rem;
    }

    .privacy-features-grid[b-1c4lsw6z24] {
        max-width: 350px;
        gap: 0.5rem;
    }

    .privacy-feature[b-1c4lsw6z24] {
        min-height: 38px;
        padding: 0.45rem 0.7rem;
    }

    .feature-icon[b-1c4lsw6z24] {
        font-size: 1rem;
    }

    .feature-text[b-1c4lsw6z24] {
        font-size: 0.65rem;
    }
}

@media (max-width: 900px) {
    .tools-grid[b-1c4lsw6z24] {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .tools-grid[b-1c4lsw6z24] {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .hero-container[b-1c4lsw6z24] {
        padding: 0.75rem 0;
    }

    .hero-content[b-1c4lsw6z24] {
        padding: 0 1rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .hero-row-1[b-1c4lsw6z24] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .hero-title[b-1c4lsw6z24] {
        font-size: 1.1rem;
        white-space: normal;
    }

    .hero-description[b-1c4lsw6z24] {
        font-size: 0.8rem;
    }

    .privacy-features-grid[b-1c4lsw6z24] {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }

    .privacy-feature[b-1c4lsw6z24] {
        min-height: 36px;
        padding: 0.4rem 0.5rem;
    }

    .feature-icon[b-1c4lsw6z24] {
        font-size: 1rem;
    }

    .feature-text[b-1c4lsw6z24] {
        font-size: 0.6rem;
    }

    .tools-showcase[b-1c4lsw6z24] {
        padding: 1.5rem 0;
    }

    .tools-container[b-1c4lsw6z24] {
        padding: 0 0.75rem;
    }

    .section-title[b-1c4lsw6z24] {
        font-size: 1.5rem;
    }

    .search-container[b-1c4lsw6z24] {
        padding: 0 0.5rem;
    }

    .search-input[b-1c4lsw6z24] {
        font-size: 0.9rem;
        padding: 0.8rem 1rem 0.8rem 2.8rem;
    }

    .search-icon[b-1c4lsw6z24] {
        font-size: 1.1rem;
        left: 0.9rem;
    }

    .no-results-message[b-1c4lsw6z24] {
        font-size: 0.85rem;
    }

    .search-results-count[b-1c4lsw6z24] {
        font-size: 0.85rem;
    }

    .standard-card:hover[b-1c4lsw6z24] {
        transform: translateY(-6px);
    }

    .card-content[b-1c4lsw6z24] {
        padding: 0.9rem 0.5rem;
        height: 90px;
    }

    .tool-icon[b-1c4lsw6z24] {
        font-size: 1.3rem;
    }

    .tool-title[b-1c4lsw6z24] {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .tools-grid[b-1c4lsw6z24] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-container[b-1c4lsw6z24] {
        padding: 0.6rem 0;
    }

    .hero-content[b-1c4lsw6z24] {
        gap: 0.6rem;
    }

    .hero-title[b-1c4lsw6z24] {
        font-size: 1rem;
    }

    .hero-description[b-1c4lsw6z24] {
        font-size: 0.75rem;
    }

    .privacy-features-grid[b-1c4lsw6z24] {
        gap: 0.4rem;
    }

    .privacy-feature[b-1c4lsw6z24] {
        min-height: 36px;
        padding: 0.4rem 0.5rem;
    }

    .feature-icon[b-1c4lsw6z24] {
        font-size: 0.9rem;
    }

    .feature-text[b-1c4lsw6z24] {
        font-size: 0.58rem;
    }

    .card-content[b-1c4lsw6z24] {
        padding: 1.25rem 1rem;
        height: 110px;
    }

    .tool-icon[b-1c4lsw6z24] {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .tool-title[b-1c4lsw6z24] {
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .hero-container[b-1c4lsw6z24] {
        padding: 0.6rem 0;
    }

    .hero-title[b-1c4lsw6z24] {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .hero-stats[b-1c4lsw6z24] {
        padding: 1rem;
        gap: 0.75rem;
    }

    .stat-number[b-1c4lsw6z24] {
        font-size: 1.3rem;
    }

    .stat-label[b-1c4lsw6z24] {
        font-size: 0.7rem;
    }

    .section-title[b-1c4lsw6z24] {
        font-size: 1.3rem;
    }

    .tools-showcase[b-1c4lsw6z24] {
        padding: 1.25rem 0;
    }

    .tools-container[b-1c4lsw6z24] {
        padding: 0 0.5rem;
    }

    .card-content[b-1c4lsw6z24] {
        padding: 1rem 0.75rem;
        height: 100px;
    }

    .tool-icon[b-1c4lsw6z24] {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
    }

    .tool-title[b-1c4lsw6z24] {
        font-size: 0.75rem;
    }
}

/* Refresh Notice Section */
.refresh-notice-container[b-1c4lsw6z24] {
    background: #fafbfc;
    padding: 1rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.refresh-notice[b-1c4lsw6z24] {
    background: #ebf8ff;
    border: 1px solid #bee3f8;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: #2c5282;
    max-width: 800px;
    margin: 0 1rem;
}

.refresh-notice i[b-1c4lsw6z24] {
    color: #3182ce;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.refresh-notice strong[b-1c4lsw6z24] {
    color: #2c5282;
    font-weight: 700;
}

@media (max-width: 768px) {
    .refresh-notice[b-1c4lsw6z24] {
        font-size: 0.75rem;
        padding: 0.65rem 1rem;
        margin: 0 0.75rem;
    }

    .refresh-notice i[b-1c4lsw6z24] {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .refresh-notice[b-1c4lsw6z24] {
        font-size: 0.7rem;
        padding: 0.6rem 0.85rem;
        gap: 0.6rem;
        margin: 0 0.5rem;
    }

    .refresh-notice i[b-1c4lsw6z24] {
        font-size: 0.95rem;
    }
}
/* /Pages/ViewVersion.razor.rz.scp.css */
.version-page[b-n7oqro6as4] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 60px);
    background: var(--bg-color);
}

/* Page Header */
.page-header[b-n7oqro6as4] {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.header-content[b-n7oqro6as4] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-icon[b-n7oqro6as4] {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-title[b-n7oqro6as4] {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle[b-n7oqro6as4] {
    margin: 0.5rem 0 0 0;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Current Version Card */
.current-version-card[b-n7oqro6as4] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.current-version-card[b-n7oqro6as4]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.current-badge[b-n7oqro6as4] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.current-badge i[b-n7oqro6as4] {
    font-size: 0.875rem;
}

.version-header[b-n7oqro6as4] {
    margin-bottom: 1.5rem;
}

.version-number[b-n7oqro6as4] {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.version-meta[b-n7oqro6as4] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.release-type[b-n7oqro6as4] {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.type-major[b-n7oqro6as4] {
    background: #ef4444;
    color: white;
}

.type-minor[b-n7oqro6as4] {
    background: #3b82f6;
    color: white;
}

.type-patch[b-n7oqro6as4] {
    background: #10b981;
    color: white;
}

.type-default[b-n7oqro6as4] {
    background: #6b7280;
    color: white;
}

.release-date[b-n7oqro6as4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.version-description[b-n7oqro6as4] {
    color: white;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.changes-section[b-n7oqro6as4] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.changes-title[b-n7oqro6as4] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.changes-title i[b-n7oqro6as4] {
    font-size: 1.5rem;
}

.changes-list[b-n7oqro6as4] {
    list-style: none;
    padding: 0;
    margin: 0;
    color: white;
}

.changes-list li[b-n7oqro6as4] {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.changes-list li:last-child[b-n7oqro6as4] {
    border-bottom: none;
}

.changes-list li[b-n7oqro6as4]::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #10b981;
    font-weight: bold;
}

/* Version History Section */
.version-history-section[b-n7oqro6as4] {
    margin-top: 3rem;
}

.section-title[b-n7oqro6as4] {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.section-title i[b-n7oqro6as4] {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.count-badge[b-n7oqro6as4] {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--card-bg);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

/* Timeline */
.history-timeline[b-n7oqro6as4] {
    position: relative;
    padding-left: 2rem;
}

.history-timeline[b-n7oqro6as4]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.history-item[b-n7oqro6as4] {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-dot[b-n7oqro6as4] {
    position: absolute;
    left: -2.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--bg-color), 0 0 0 6px rgba(102, 126, 234, 0.3);
}

.history-card[b-n7oqro6as4] {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.history-card:hover[b-n7oqro6as4] {
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
    transform: translateX(4px);
}

.history-header[b-n7oqro6as4] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.history-version[b-n7oqro6as4] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.history-meta[b-n7oqro6as4] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.release-type-small[b-n7oqro6as4] {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.history-date[b-n7oqro6as4] {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.history-description[b-n7oqro6as4] {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.history-changes[b-n7oqro6as4] {
    margin-top: 1rem;
}

.history-changes details[b-n7oqro6as4] {
    cursor: pointer;
}

.history-changes summary[b-n7oqro6as4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    font-weight: 600;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    user-select: none;
}

.history-changes summary:hover[b-n7oqro6as4] {
    background: rgba(102, 126, 234, 0.1);
}

.history-changes summary i[b-n7oqro6as4] {
    transition: transform 0.3s ease;
}

.history-changes details[open] summary i[b-n7oqro6as4] {
    transform: rotate(90deg);
}

.history-changes-list[b-n7oqro6as4] {
    list-style: none;
    padding: 1rem 0 0 0;
    margin: 0;
}

.history-changes-list li[b-n7oqro6as4] {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.6;
    color: var(--text-color);
}

.history-changes-list li[b-n7oqro6as4]::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Password Prompt */
.password-prompt[b-n7oqro6as4] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 60px - 4rem);
}

.password-card[b-n7oqro6as4] {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.password-header[b-n7oqro6as4] {
    margin-bottom: 2rem;
}

.password-icon[b-n7oqro6as4] {
    font-size: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.password-header h2[b-n7oqro6as4] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.password-header p[b-n7oqro6as4] {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

.password-form[b-n7oqro6as4] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.password-input[b-n7oqro6as4] {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-color);
    color: var(--text-color);
    transition: all 0.3s ease;
    outline: none;
}

.password-input:focus[b-n7oqro6as4] {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.btn-submit[b-n7oqro6as4] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-submit:hover[b-n7oqro6as4] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-submit:active[b-n7oqro6as4] {
    transform: translateY(0);
}

.error-message[b-n7oqro6as4] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #fee2e2;
    color: #dc2626;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.error-message i[b-n7oqro6as4] {
    font-size: 1.1rem;
}

/* Dark mode support for password prompt */
[data-theme="dark"] .password-card[b-n7oqro6as4] {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .error-message[b-n7oqro6as4] {
    background: rgba(220, 38, 38, 0.2);
    color: #fca5a5;
}

/* Loading State */
.loading-state[b-n7oqro6as4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    gap: 1.5rem;
}

.spinner[b-n7oqro6as4] {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(102, 126, 234, 0.2);
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin-b-n7oqro6as4 1s linear infinite;
}

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

.loading-state p[b-n7oqro6as4] {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .version-page[b-n7oqro6as4] {
        padding: 1rem;
    }

    .page-title[b-n7oqro6as4] {
        font-size: 1.75rem;
    }

    .page-subtitle[b-n7oqro6as4] {
        font-size: 0.95rem;
    }

    .header-icon[b-n7oqro6as4] {
        font-size: 2rem;
    }

    .current-version-card[b-n7oqro6as4] {
        padding: 1.5rem;
    }

    .version-number[b-n7oqro6as4] {
        font-size: 2.5rem;
    }

    .version-description[b-n7oqro6as4] {
        font-size: 1rem;
    }

    .history-timeline[b-n7oqro6as4] {
        padding-left: 1.5rem;
    }

    .timeline-dot[b-n7oqro6as4] {
        left: -2rem;
    }

    .history-version[b-n7oqro6as4] {
        font-size: 1.25rem;
    }

    .section-title[b-n7oqro6as4] {
        font-size: 1.5rem;
        flex-wrap: wrap;
    }

    .password-card[b-n7oqro6as4] {
        padding: 2rem;
        margin: 1rem;
    }

    .password-icon[b-n7oqro6as4] {
        font-size: 3rem;
    }

    .password-header h2[b-n7oqro6as4] {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .version-page[b-n7oqro6as4] {
        padding: 0.75rem;
    }

    .header-content[b-n7oqro6as4] {
        gap: 1rem;
    }

    .page-title[b-n7oqro6as4] {
        font-size: 1.5rem;
    }

    .current-version-card[b-n7oqro6as4] {
        padding: 1.25rem;
    }

    .version-number[b-n7oqro6as4] {
        font-size: 2rem;
    }

    .changes-section[b-n7oqro6as4] {
        padding: 1rem;
    }

    .history-card[b-n7oqro6as4] {
        padding: 1rem;
    }

    .password-card[b-n7oqro6as4] {
        padding: 1.5rem;
        margin: 0.75rem;
    }

    .password-icon[b-n7oqro6as4] {
        font-size: 2.5rem;
    }

    .password-header h2[b-n7oqro6as4] {
        font-size: 1.25rem;
    }

    .password-header p[b-n7oqro6as4] {
        font-size: 0.9rem;
    }
}
