/* =============================================
 * SLYD DOCUMENTATION STYLES
 * =============================================
 *
 * TABLE OF CONTENTS:
 * 1. Fonts & CSS Variables
 * 2. Base & Typography
 * 3. Scrollbar Styles
 * 4. Particles.js Background
 * 5. Layout (Dashboard, Sidebar, Content Area)
 * 6. Navigation & Menu
 * 7. Search
 * 8. Table of Contents
 * 9. Documentation Content Styling
 * 10. Code Blocks
 * 11. Info Boxes
 * 12. Tabs
 * 13. Tables
 * 14. Badges & Tags
 * 15. Footer & Feedback
 * 16. Cards (unified base + variants)
 * 17. Steps & Process Flows
 * 18. Beta & Development Indicators
 * 19. Accordion
 * 20. Utilities & Buttons
 * 21. Animations
 * 22. Mobile Responsiveness
 * =============================================
 */

/* =============================================
 * 1. FONTS & CSS VARIABLES
 * ============================================= */
/* Google Fonts removed - using self-hosted fonts from /css/fonts.css */
/* Inter falls back to system sans-serif */

:root {
    /* Brand Colors */
    --primary: #6366F1;
    --primary-dark: #4F46E5;
    --secondary: #10B981;
    --tertiary: #EC4899;
    --warning: #F59E0B;
    --purple: #8B5CF6;
    --purple-dark: #9333EA;

    /* Background Colors */
    --bg-dark: #020617;
    --bg-darker: #0F172A;
    --bg-card: rgba(15, 23, 42, 0.4);
    --bg-card-header: rgba(99, 102, 241, 0.1);
    --bg-card-alt: rgba(15, 23, 42, 0.6);

    /* Border Colors */
    --border-light: rgba(255, 255, 255, 0.1);
    --border-lighter: rgba(255, 255, 255, 0.05);
    --border-primary: rgba(99, 102, 241, 0.4);
    --border-primary-light: rgba(99, 102, 241, 0.2);

    /* Text Colors */
    --text-primary: #F8FAFC;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Spacing & Sizing */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-full: 100px;
    --radius-circle: 50%;

    /* Shadows */
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-card-sm: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-primary: 0 4px 12px rgba(99, 102, 241, 0.3);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(79, 70, 229, 0.2));
    --gradient-primary-solid: linear-gradient(to right, #6366F1, #4F46E5);
}

/* =============================================
 * 2. BASE & TYPOGRAPHY
 * ============================================= */
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
}

h1, h2, h3, h4, h5 {
    font-family: 'Space Grotesk', sans-serif;
}

code, pre {
    font-family: 'JetBrains Mono', monospace;
}

.gradient-text {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* =============================================
 * 3. SCROLLBAR STYLES
 * ============================================= */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(99, 102, 241, 0.5);
    border-radius: var(--radius-sm);
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(99, 102, 241, 0.5) transparent;
}

/* =============================================
 * 4. PARTICLES.JS BACKGROUND
 * ============================================= */
/* NOTE: Particles styles now come from SLYD.Components/Particles/ParticlesBackground.razor.css */

/* =============================================
 * 5. LAYOUT (Dashboard, Sidebar, Content Area)
 * ============================================= */
.dashboard-layout {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.sidebar {
    width: 280px;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-right: 1px solid var(--border-light);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    z-index: 10;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
}

.sidebar-logo {
    padding: 24px;
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-profile {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
}

.profile-img {
    width: 42px;
    height: 42px;
    background: var(--gradient-primary-solid);
    border-radius: var(--radius-circle);
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.content-area {
    margin-left: 280px;
    transition: all 0.3s ease;
    min-height: 100%;
    width: calc(100% - 280px);
    padding: 4rem 3rem 3rem 3rem;
    padding-bottom: 4rem;
    position: relative;
    overflow-y: auto;
    z-index: 1;
}

.content-area .container {
    max-width: 100%;
}

/* Docs main content - for use with component library LayoutShell */
.docs-main-content {
    padding: 2rem 3rem 4rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* =============================================
 * 6. NAVIGATION & MENU
 * ============================================= */
.menu-section {
    padding: 16px 0;
}

.menu-header {
    padding: 8px 24px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item {
    padding: 10px 24px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.menu-item.active {
    background-color: rgba(79, 70, 229, 0.15);
    color: var(--primary);
    border-left-color: var(--primary);
}

.menu-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.menu-icon {
    width: 20px;
    margin-right: 12px;
    text-align: center;
}

/* Dropdown menu - scoped to docs sidebar to avoid nav conflicts */
.docs-sidebar .dropdown-content,
.menu-section .dropdown-content {
    display: none;
    padding-left: 30px;
}

.docs-sidebar .dropdown-content.active,
.menu-section .dropdown-content.active {
    display: block;
}

.docs-sidebar .dropdown-item,
.menu-section .dropdown-item {
    padding: 8px 0 8px 24px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    display: block;
    transition: all 0.2s ease;
    position: relative;
}

.docs-sidebar .dropdown-item:hover,
.menu-section .dropdown-item:hover {
    color: var(--primary);
    background-color: rgba(255, 255, 255, 0.05);
}

.docs-sidebar .dropdown-item.active,
.menu-section .dropdown-item.active {
    color: var(--primary);
    background-color: rgba(79, 70, 229, 0.15);
    border-left: 3px solid var(--primary);
    font-weight: 500;
}

.docs-sidebar .dropdown-toggle,
.menu-section .dropdown-toggle {
    cursor: pointer;
}

/* Docs View Toggle */
.docs-view-toggle-container {
    display: flex;
    background-color: rgba(30, 30, 40, 0.8);
    padding: 2px;
    margin: 0 0 16px 0;
    border-bottom: 1px solid var(--border-light);
    width: 100%;
}

.docs-view-toggle-button {
    flex: 1 1 50%;
    padding: 8px 16px;
    background: transparent;
    color: var(--text-secondary);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.docs-view-toggle-button:hover {
    color: rgba(255, 255, 255, 0.9);
}

.docs-view-toggle-button.active {
    background-color: rgba(70, 70, 220, 0.6);
    color: white;
}

/* =============================================
 * 7. SEARCH
 * ============================================= */
.search-bar {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.search-bar:focus-within {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
}

.search-bar input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    width: 100%;
    font-size: 0.875rem;
}

/* =============================================
 * 8. TABLE OF CONTENTS
 * ============================================= */
.toc-sidebar {
    position: relative;
}

.toc-container {
    position: sticky;
    top: 2rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    border-left: 1px solid var(--border-light);
    padding-left: 1rem;
}

.toc-link {
    display: block;
    padding: 0.25rem 0 0.25rem 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border-left: 1px solid var(--border-light);
    margin-left: 0.5rem;
}

.toc-link:hover {
    color: white;
    border-left-color: rgba(99, 102, 241, 0.5);
}

.toc-link.active {
    color: var(--primary);
    border-left-color: var(--primary);
}

.toc-h3 {
    padding-left: 2rem;
    font-size: 0.8125rem;
}

/* =============================================
 * 9. DOCUMENTATION CONTENT STYLING
 * ============================================= */
.doc-content {
    width: 100%;
    max-width: 100%;
    padding-right: 1rem;
}

.doc-content h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.doc-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.doc-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.doc-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.doc-content ul, .doc-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.doc-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.doc-content a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.doc-content a:hover {
    text-decoration: underline;
}

/* =============================================
 * 10. CODE BLOCKS
 * ============================================= */
.code-block {
    background-color: rgba(2, 6, 23, 0.6);
    border: 1px solid var(--border-lighter);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.code-header {
    background-color: var(--bg-card-alt);
    border-bottom: 1px solid var(--border-lighter);
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.code-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.code-actions {
    display: flex;
    gap: 0.5rem;
}

.code-action {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius-sm);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.code-action:hover {
    background-color: rgba(99, 102, 241, 0.2);
    color: white;
}

.code-block pre {
    margin: 0;
    padding: 1rem;
    overflow-x: auto;
}

.code-block code {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* =============================================
 * 11. INFO BOXES
 * ============================================= */
.info-box {
    background-color: rgba(99, 102, 241, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.info-box-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.info-box-icon {
    margin-right: 0.5rem;
    color: var(--primary);
}

.info-box-title {
    font-weight: 600;
    color: var(--primary);
}

.info-box-content {
    color: rgba(255, 255, 255, 0.8);
}

.info-box.warning {
    background-color: rgba(217, 119, 6, 0.1);
    border-left-color: var(--warning);
}

.info-box.warning .info-box-icon,
.info-box.warning .info-box-title {
    color: var(--warning);
}

/* =============================================
 * 12. TABS
 * ============================================= */
.tabs {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
}

.tab {
    padding: 0.75rem 1.25rem;
    border-bottom: 2px solid transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab:hover {
    color: white;
}

.tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* =============================================
 * 13. TABLES
 * ============================================= */
.api-table,
.architecture-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 1.5rem;
}

.api-table th,
.api-table td,
.architecture-table th,
.architecture-table td {
    border-bottom: 1px solid var(--border-light);
    padding: 0.875rem 1rem;
    text-align: left;
}

.api-table th,
.architecture-table th {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background-color: var(--bg-card);
}

.api-table tr:nth-child(even),
.architecture-table tr:nth-child(even) {
    background-color: rgba(15, 23, 42, 0.2);
}

.api-table tr:hover,
.architecture-table tr:hover {
    background-color: rgba(15, 23, 42, 0.5);
}

.architecture-table th,
.architecture-table td {
    border: 1px solid var(--border-light);
}

.architecture-table ul {
    margin: 0;
    padding-left: 1.25rem;
}

.architecture-table li {
    margin-bottom: 0.25rem;
}

.api-param-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
}

.api-param-type {
    font-size: 0.75rem;
    color: var(--tertiary);
    margin-left: 0.25rem;
}

.api-param-required {
    font-size: 0.75rem;
    color: var(--secondary);
    margin-left: 0.25rem;
}

.api-param-optional {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

/* =============================================
 * 14. BADGES & TAGS
 * ============================================= */
.version-badge,
.beta-badge,
.pre-release-badge,
.coming-soon-badge,
.beta-tag {
    display: inline-block;
    border-radius: var(--radius-full);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    position: relative;
    top: -2px;
}

.version-badge {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--secondary);
}

.beta-badge,
.beta-tag {
    background-color: rgba(251, 146, 60, 0.1);
    border: 1px solid rgba(251, 146, 60, 0.3);
    color: #FB923C;
}

.beta-tag {
    padding: 0.1rem 0.5rem;
    font-size: 0.7rem;
    top: -1px;
}

.pre-release-badge {
    background-color: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    color: var(--purple-dark);
}

.coming-soon-badge {
    background-color: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--purple);
}

/* =============================================
 * 15. FOOTER & FEEDBACK
 * ============================================= */
.doc-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
}

.doc-feedback {
    background-color: var(--bg-card);
    border: 1px solid var(--border-lighter);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 40px;
}

.feedback-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.feedback-button {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 0.5rem 1rem;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.feedback-button:hover {
    background-color: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

.feedback-button i {
    margin-right: 0.5rem;
}

/* =============================================
 * 16. CARDS (Unified Base + Variants)
 * ============================================= */

/* Base card styles - all cards inherit these */
.doc-card,
.component-card,
.role-card,
.stack-card,
.resource-card,
.app-card,
.app-category-card,
.pricing-card,
.config-card,
.login-method-card,
.profile-section-card,
.mfa-option-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

/* Card hover effect - lift and glow */
.doc-card:hover,
.component-card:hover,
.role-card:hover,
.stack-card:hover,
.resource-card:hover,
.app-card:hover,
.app-category-card:hover,
.profile-section-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-primary);
    box-shadow: var(--shadow-card-sm);
}

/* Card header pattern */
.component-card-header,
.stack-card-header,
.resource-card-header,
.app-card-header,
.pricing-card-header,
.config-card-header,
.login-method-header {
    background-color: var(--bg-card-header);
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
}

.component-card-header i,
.resource-card-header i,
.pricing-card-header i,
.login-method-header i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 0.75rem;
}

.component-card-header h3,
.stack-card-header h3,
.resource-card-header h3,
.pricing-card-header h3,
.config-card-header h3,
.login-method-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

/* Card body pattern */
.component-card-body,
.stack-card-body,
.resource-card-body,
.app-card-body,
.pricing-card-body,
.config-card-body,
.login-method-body {
    padding: 1rem;
}

/* Doc Card */
.doc-card {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.doc-card:hover {
    background-color: rgba(79, 70, 229, 0.1);
    text-decoration: none;
}

.doc-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 24px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.doc-card-content h3 {
    font-size: 1.125rem;
    margin: 0 0 0.5rem;
    font-weight: 600;
}

.doc-card-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Component Card */
.component-card {
    overflow: hidden;
    height: 100%;
}

.component-card-body p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.component-features {
    list-style: disc;
    margin: 0.75rem 0 0 1.5rem;
    padding: 0;
}

.component-features li {
    margin-bottom: 0.25rem;
    color: var(--text-secondary);
}

/* Role Card */
.role-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.role-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.role-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.role-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.role-capabilities {
    list-style: disc;
    text-align: left;
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.role-capabilities li {
    margin-bottom: 0.25rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.role-card.beta-role {
    border-color: rgba(251, 146, 60, 0.3);
    box-shadow: 0 0 15px rgba(251, 146, 60, 0.1);
}

.role-card.beta-role .role-icon {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(251, 146, 60, 0.1));
    color: #FB923C;
}

/* Stack Card */
.stack-card {
    overflow: hidden;
    height: 100%;
}

.stack-card-header {
    padding: 0.75rem 1rem;
}

.stack-card-body {
    padding: 0.5rem;
}

.stack-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stack-list li {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-lighter);
}

.stack-list li:last-child {
    border-bottom: none;
}

.stack-icon {
    width: 2rem;
    font-size: 1.25rem;
    color: var(--primary);
    display: flex;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.stack-name {
    font-weight: 500;
    width: 8rem;
    flex-shrink: 0;
}

.stack-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Resource Card */
.resource-card {
    overflow: hidden;
    height: 100%;
}

.resource-card.featured {
    border-color: var(--border-primary);
    background-color: rgba(99, 102, 241, 0.1);
}

.resource-card-header {
    background-color: var(--bg-card-alt);
    position: relative;
}

.popular-tag {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(236, 72, 153, 0.2);
    color: var(--tertiary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

.resource-specs {
    list-style: none;
    padding: 0.75rem 0;
    margin: 0.75rem 0;
    border-top: 1px solid var(--border-lighter);
    border-bottom: 1px solid var(--border-lighter);
}

.resource-specs li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.resource-specs li span {
    color: var(--text-secondary);
    font-weight: 500;
}

.resource-use-case {
    font-size: 0.875rem;
    margin-top: 0.75rem;
}

.resource-use-case strong {
    color: var(--primary);
}

/* App Cards */
.app-category-card {
    padding: 1.25rem;
    display: flex;
    text-decoration: none;
    color: white;
}

.app-category-card:hover {
    background-color: rgba(79, 70, 229, 0.1);
}

.app-category-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    margin-right: 1rem;
    flex-shrink: 0;
}

.app-category-content {
    flex-grow: 1;
}

.app-category-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.app-category-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0 0 0.5rem;
}

.app-count,
.app-tag {
    font-size: 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 0.1rem 0.5rem;
    display: inline-block;
}

.app-card {
    overflow: hidden;
}

.app-card-header {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-light);
    background: transparent;
}

.app-logo {
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-sm);
}

.app-rating {
    font-size: 0.75rem;
    color: #FFD700;
}

.app-rating span {
    color: var(--text-secondary);
    margin-left: 0.25rem;
}

.app-card-body h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.app-card-body p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0 0 0.75rem;
    height: 38px;
}

.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.app-card-footer {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-installs {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.app-details-link {
    font-size: 0.75rem;
    color: var(--primary);
    text-decoration: none;
}

.app-details-link:hover {
    text-decoration: underline;
}

/* Pricing Card */
.pricing-card {
    overflow: hidden;
    height: 100%;
}

.pricing-card-header {
    background-color: var(--bg-card-alt);
}

.pricing-details {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.pricing-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.pricing-details li i {
    color: var(--secondary);
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.price-example {
    background-color: var(--bg-card-alt);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    margin-top: 1rem;
}

.example-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.5rem;
}

.example-prices {
    display: flex;
    justify-content: space-around;
}

.price-option {
    text-align: center;
}

.price-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    display: block;
}

.price-period {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.license-types {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.license-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
}

.license-tag i {
    margin-right: 0.25rem;
}

.license-tag.free {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
}

.license-tag.premium {
    background-color: rgba(236, 72, 153, 0.1);
    color: var(--tertiary);
}

.license-tag.byol {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

/* Config Card */
.config-card {
    overflow: hidden;
}

.config-card-header {
    padding: 0.75rem 1rem;
    justify-content: space-between;
}

.price {
    background-color: rgba(16, 185, 129, 0.2);
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

.config-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.config-card-body ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.config-card-body ul li i {
    width: 1.5rem;
    color: var(--primary);
    margin-right: 0.5rem;
}

/* Auth Cards */
.login-method-card,
.profile-section-card {
    overflow: hidden;
    height: 100%;
}

.profile-section-card {
    display: flex;
    padding: 1.5rem;
    text-decoration: none;
    color: white;
}

.profile-section-card:hover {
    background-color: rgba(79, 70, 229, 0.1);
}

.profile-section-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
}

.profile-section-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.profile-section-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.sso-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

.sso-badge i {
    margin-right: 0.25rem;
}

/* MFA Card */
.mfa-option-card {
    padding: 1.5rem;
    text-align: center;
}

.mfa-option-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.mfa-option-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mfa-option-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* =============================================
 * 17. STEPS & PROCESS FLOWS
 * Now handled by SLYD.Components StepList and Step components
 * ============================================= */

/* =============================================
 * 18. BETA & DEVELOPMENT INDICATORS
 * ============================================= */
.beta-project-banner {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.15), rgba(236, 72, 153, 0.15));
    border: 1px solid rgba(251, 146, 60, 0.3);
    border-radius: var(--radius-lg);
    padding: 16px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.beta-project-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
        rgba(251, 146, 60, 0.1) 25%,
        transparent 25%,
        transparent 50%,
        rgba(251, 146, 60, 0.1) 50%,
        rgba(251, 146, 60, 0.1) 75%,
        transparent 75%,
        transparent);
    background-size: 10px 10px;
    opacity: 0.2;
    z-index: 0;
}

.beta-project-content {
    position: relative;
    z-index: 1;
}

/* In-development modifier */
.in-development {
    position: relative;
    opacity: 0.6;
    filter: grayscale(0.3);
    cursor: help;
}

.in-development:hover {
    opacity: 0.75;
    filter: grayscale(0.1);
}

.component-card.in-development::before,
.role-card.in-development::before,
.stack-card.in-development::before,
.doc-card.in-development::before,
.component-card.roadmap-q3::before,
.component-card.roadmap-q4::before {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--purple);
    border-radius: var(--radius-full);
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.component-card.in-development::before,
.role-card.in-development::before,
.stack-card.in-development::before,
.doc-card.in-development::before,
.component-card.roadmap-q4::before {
    content: "Coming in Q4 2025";
}

.component-card.roadmap-q3::before {
    content: "Coming in Q3 2025";
    background-color: rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.3);
    color: var(--purple-dark);
}

.menu-item.in-development {
    color: var(--text-muted);
}

.menu-item.in-development::after {
    content: "Soon";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.65rem;
    padding: 2px 6px;
    background-color: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--purple);
    border-radius: var(--radius-full);
}

.in-development-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.overlay-content {
    text-align: center;
    padding: 2rem;
    max-width: 400px;
}

.overlay-content i {
    color: #FB923C;
    animation: rocket-pulse 2s ease-in-out infinite;
}

/* =============================================
 * 19. ACCORDION
 * ============================================= */
.accordion {
    margin: 2rem 0;
}

.accordion-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-header {
    padding: 1rem;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.accordion-header i:first-child {
    color: var(--primary);
    margin-right: 0.75rem;
}

.accordion-header h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
    flex-grow: 1;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 1rem 1rem 2.75rem;
    display: none;
}

.accordion-item.active .accordion-content {
    display: block;
}

/* =============================================
 * 20. UTILITIES & BUTTONS
 * ============================================= */

/* Grid System - Responsive utilities */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Spacing Utilities */
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mr-2 { margin-right: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.ml-2 { margin-left: 0.5rem; }

/* Text Utilities */
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-white {
    color: #ffffff;
}

.text-gray-300 {
    color: rgba(209, 213, 219, 1);
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

/* Flexbox Utilities */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

/* Border Utilities */
.rounded-lg {
    border-radius: 0.5rem;
}

/* Container Utility */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* .image-container - Now handled by SLYD.Components ImageFigure component */

.doc-link {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.doc-link:hover {
    text-decoration: underline;
}

.position-relative {
    position: relative;
}

.opacity-50 {
    opacity: 0.5;
}

.btn-primary {
    background: var(--gradient-primary-solid);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--primary);
    background-color: rgba(99, 102, 241, 0.1);
    text-decoration: none;
}

#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* =============================================
 * 21. ANIMATIONS
 * ============================================= */
@keyframes rocket-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* =============================================
 * 22. MOBILE RESPONSIVENESS
 * ============================================= */
@media (max-width: 1023px) {
    .sidebar {
        transform: translateX(-100%);
        z-index: 50;
        transition: transform 0.3s ease-in-out;
    }

    .sidebar.active {
        transform: translateX(0);
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .sidebar.active::after {
        content: "";
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    .content-area {
        margin-left: 0;
        width: 100%;
        padding: 5rem 1.5rem 3rem 1.5rem;
    }

    .mobile-menu-btn,
    .mobile-search-btn {
        display: flex;
        position: fixed;
        top: 1rem;
        z-index: 60;
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        color: white;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .mobile-menu-btn {
        left: 1rem;
        background-color: rgba(99, 102, 241, 0.8);
        border: 1px solid rgba(99, 102, 241, 0.5);
    }

    .mobile-search-btn {
        right: 1rem;
        background-color: var(--bg-card-alt);
        border: 1px solid var(--border-light);
    }

    .mobile-menu-btn:hover,
    .mobile-search-btn:hover {
        transform: scale(1.05);
    }

    .mobile-menu-btn:hover {
        background-color: var(--primary);
    }

    .mobile-search-btn:hover {
        background-color: rgba(15, 23, 42, 0.8);
    }

    .mobile-search-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: rgba(2, 6, 23, 0.95);
        padding: 1rem;
        transform: translateY(-100%);
        transition: all 0.3s ease;
        z-index: 70;
    }

    .mobile-search-container.active {
        transform: translateY(0);
    }

    .toc-sidebar {
        display: none;
    }
}

@media (min-width: 1024px) {
    .mobile-menu-btn,
    .mobile-search-btn,
    .mobile-search-container {
        display: none;
    }
}

/* =============================================
 * PROVIDER DOCUMENTATION STYLES
 * ============================================= */

/* Lifecycle Diagram */
.lifecycle-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2rem 0;
    flex-wrap: wrap;
    padding: 1.5rem;
    background-color: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .lifecycle-diagram {
        flex-direction: column;
        align-items: flex-start;
    }

    .lifecycle-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
}

.lifecycle-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (max-width: 768px) {
    .lifecycle-stage {
        width: 100%;
        flex-direction: row;
        text-align: left;
        margin-bottom: 0.5rem;
    }
}

.lifecycle-stage h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0.75rem 0 0.25rem;
}

.lifecycle-stage p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.stage-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stage-icon.pending {
    background-color: rgba(245, 158, 11, 0.2);
    color: #F59E0B;
}

.stage-icon.starting {
    background-color: rgba(59, 130, 246, 0.2);
    color: #3B82F6;
}

.stage-icon.running {
    background-color: rgba(16, 185, 129, 0.2);
    color: #10B981;
}

.stage-icon.stopping {
    background-color: rgba(236, 72, 153, 0.2);
    color: #EC4899;
}

.stage-icon.terminated {
    background-color: rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

.lifecycle-arrow {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Monitoring Methods */
.monitoring-method {
    background-color: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
}

.monitoring-method h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
}

/* Code Sections */
.code-section {
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.code-content {
    margin: 0;
    padding: 1rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.875rem;
    line-height: 1.5;
    overflow-x: auto;
    background: transparent;
}

.code-content code {
    background: none;
    padding: 0;
}

/* Resource Allocation */
.resource-allocation-info {
    background-color: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.resource-allocation-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
}

.allocation-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .allocation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .allocation-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.allocation-type {
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 1rem;
}

.allocation-type h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.allocation-type ul {
    list-style: disc;
    margin-left: 1.25rem;
    padding: 0;
}

/* Data Tables */
.instance-types-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.data-table th,
.data-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table th {
    background-color: rgba(15, 23, 42, 0.6);
    font-weight: 600;
    font-size: 0.875rem;
}

.data-table td {
    font-size: 0.875rem;
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.data-table tbody tr:hover {
    background-color: rgba(99, 102, 241, 0.1);
}

/* Performance Metrics */
.performance-metrics {
    margin: 1.5rem 0;
}

.performance-metrics h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .metrics-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.metric-card {
    background-color: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
}

.metric-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.metric-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.metric-card ul li {
    padding: 0.25rem 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Troubleshooting Guide */
.troubleshooting-guide {
    margin: 1.5rem 0;
}

.issue-section {
    background-color: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.issue-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

.issue-steps p {
    margin: 0.5rem 0;
}

/* Security Features */
.security-features {
    margin: 1.5rem 0;
}

.security-features h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

.security-feature {
    background-color: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.25rem;
    height: 100%;
}

.security-feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.security-feature ul {
    list-style: disc;
    margin-left: 1.25rem;
    padding: 0;
}

/* Maintenance Procedures */
.maintenance-procedures {
    background-color: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.maintenance-procedures h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
}

/* Best Practices */
.best-practices-list {
    margin: 1.5rem 0;
}

.practice {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    background-color: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.practice i {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Color Utilities */
.text-blue-400 { color: #60A5FA; }
.text-green-400 { color: #4ADE80; }
.text-purple-400 { color: #C084FC; }
.text-orange-400 { color: #FB923C; }
.text-yellow-400 { color: #FACC15; }
.text-red-400 { color: #F87171; }

/* Size Utilities */
.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

/* List Utilities */
.list-disc {
    list-style-type: disc;
}

.ml-5 {
    margin-left: 1.25rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}
