
 /* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&family=Caveat:wght@400;500;600;700&display=swap');

/* =========================
   Reset & Base Styles
   ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Kalam', 'Comic Sans MS', 'Caveat', cursive, sans-serif;
    line-height: 1.7;
    color: #333;
    background: #f9fafc;
    overflow-x: hidden;
}

/* =========================
   Container
   ========================= */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.2rem;
}

/* =========================
   Header
   ========================= */
.header-interactive {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #356c67 0%, #2a5550 100%);
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: relative;
}

.header-interactive h1 {
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

.header-interactive p {
    font-size: 1.3rem;
    color: #e5deff;
    margin-top: 0.5rem;
}

/* Header left button */
.explore-diagrams-btn-wrapper {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    z-index: 2;
}

.explore-diagrams-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff6f61;
    color: #fff;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(102,126,234,0.10);
    transition: background 0.2s, transform 0.2s;
    gap: 8px;
}

.explore-diagrams-btn:hover,
.explore-diagrams-btn:focus {
    background: #e4574f;
    transform: translateY(-2px);
}

/* Header right button */
.follow-btn-wrapper {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 2;
}

.follow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e1306c;
    color: #fff;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(225,48,108,0.10);
    transition: background 0.2s, transform 0.2s;
    gap: 8px;
}

.follow-btn:hover,
.follow-btn:focus {
    background: #b92d5d;
    transform: translateY(-2px);
}

.explore-diagrams-btn img, .follow-btn img {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

/* =========================
   Demo Grid & Sections
   ========================= */
.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .demo-grid {
        grid-template-columns: 1fr;
    }
       .demo-grid {
            display: contents;
    }
}

.demo-section {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(53, 108, 103, 0.08);
    border-top: 4px solid #356c67;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeIn 0.8s ease-out;
}

.demo-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(53, 108, 103, 0.12);
}

.demo-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #356c67;
    margin-bottom: 1rem;
    text-align: center;
}

/* =========================
   Explanation
   ========================= */
.explanation {
    font-size: 1.1rem;
    color: #444;
    background: #f9f9fb;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #ff6f61;
}

.one-explanation {
    border-left-color: #356c67;
}

/* =========================
   Server Simulation
   ========================= */
.server-simulation {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #333;
}

.server-log {
    background: #e5deff4d;
    padding: 1rem;
    border-radius: 10px;
    min-height: 60px;
    font-size: 0.95rem;
    color: #356c67;
    border: 1px solid #356c67;
}

/* =========================
   Demo Controls & Buttons
   ========================= */
.demo-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.demo-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    background: #ff6f61;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Kalam', 'Comic Sans MS', 'Caveat', cursive, sans-serif;
}

.demo-btn:hover {
    background: #e55a50;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.3);
}

.first-btn {
    background: #356c67;
}

.first-btn:hover {
    background: #2a5550;
    box-shadow: 0 4px 15px rgba(53, 108, 103, 0.3);
}

.clear-btn {
    background: #e5deff4d;
    color: #333;
    padding: 5px;
    border: 2px solid #356c67;
    border-radius: 20px;
}

.clear-btn:hover {
    background: #d5ccff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(53, 108, 103, 0.2);
}

/* =========================
   Status Bar
   ========================= */
.status-bar {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #333;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
}

.status-indicator.connected {
    background: #4caf50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
}

/* =========================
   Chat Input
   ========================= */
.chat-input {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.chat-input input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: #f9f9fb;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1);
    outline-color: #ff6f61;
}

.chat-input button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    background: #ff6f61;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.chat-input button:hover {
    background: #e55a50;
    transform: translateY(-2px);
}

.chat-input button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* =========================
   Demo Area
   ========================= */
.demo-area {
    background: #f9f9fb;
    padding: 1rem;
    border-radius: 12px;
    min-height: 200px;
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    border: 1px solid #e5deff4d;
}

.event-message {
    background: #fff;
    padding: 0.8rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.one-message {
    border-left: 3px solid #356c67;
}

.two-message {
    border-left: 3px solid #ff6f61;
}

.message-time {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
}

/* =========================
   How It Works
   ========================= */
.how-it-works {
    margin-top: 1.5rem;
}

.how-it-works h4 {
    font-size: 1.4rem;
    color: #356c67;
    margin-bottom: 1rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #333;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #ff6f61;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.one-step .step-number {
    background: #356c67;
}

/* =========================
   Forms
   ========================= */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #356c67;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #356c67;
}
th{
    color:#ff6f61 !important; 
}
td{
    color: #f0f0f0;
}
/* =========================
   Token Info & Messages
   ========================= */
.token-info {
    background: #e6fffa;
    border: 1px solid #4fd1c7;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.error-message {
    background: #fed7d7;
    color: #c53030;
    padding: 0.8rem;
    border-radius: 8px;
    margin: 1rem 0;
    border: 1px solid #feb2b2;
}

.success-message {
    background: #f0fff4;
    color: #22543d;
    padding: 0.8rem;
    border-radius: 8px;
    margin: 1rem 0;
    border: 1px solid #9ae6b4;
}
.font-family {
        font-family: 'Kalam', 'Comic Sans MS', 'Caveat', cursive, sans-serif;
}
/* =========================
   Animations
   ========================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================
   Tabs & Tab Content
   ========================= */
.tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tab {
    background: #f0f0f0;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    color: #666;
    font-family: 'Kalam', 'Comic Sans MS', 'Caveat', cursive, sans-serif;
}

.tab.active {
    background: #356c67;
    color: #fff;
}

.tab:hover {
    background: #ff6f61;
    color: #fff;
    transform: translateY(-2px);
}

.tab-content {
    display: none;
}

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

/* =========================
   Code Containers & Blocks
   ========================= */
.code-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .code-container {
        grid-template-columns: 1fr;
    }
}

.code-block {
    background: #2d3748;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 12px;
    font-family: 'Courier New', monospace;
    position: relative;
    overflow-x: auto;
}

.code-line {
    margin: 0.5rem 0;
    line-height: 1.5;
}

.var-usage {
    color: #f687b3;
}

.var-declaration {
    color: #68d391;
}

.var-assignment {
    color: #fbd38d;
}

.error {
    color: #fc8181;
}

.comment {
    color: #a0aec0;
    font-style: italic;
}

/* =========================
   Hoisting Visualization
   ========================= */
.hoisting-visualization {
    margin: 2rem 0;
}

.memory-diagram {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.memory-slot {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.memory-slot:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.memory-slot.hoisted {
    border-color: #48bb78;
    background: linear-gradient(135deg, #f0fff4, #c6f6d5);
}

.memory-slot.tdz {
    border-color: #ed8936;
    background: linear-gradient(135deg, #fffaf0, #feebc8);
}

.memory-slot.error {
    border-color: #f56565;
    background: linear-gradient(135deg, #fff5f5, #fed7d7);
}

.variable-name {
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.variable-value {
    color: #4a5568;
    font-size: 0.9rem;
}


/* =========================
   Timeline
   ========================= */
.timeline {
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.timeline-number {
    width: 40px;
    height: 40px;
    background: #ff6f61;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.timeline-content {
    color: #2d3748;
}

/* =========================
   Interactive Example
   ========================= */
.interactive-example {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 1px solid #e2e8f0;
}

.run-button {
    background: #ff6f61;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.run-button:hover {
    background: #e55a50;
    transform: translateY(-2px);
}

.output {
    background: #2d3748;
    color: #e2e8f0;
    padding: 1rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    min-height: 60px;
    white-space: pre-wrap;
    line-height: 1.4;
}

/* =========================
   Tooltip
   ========================= */
.tooltip {
    position: absolute;
    background: #2d3748;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    z-index: 1000;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #2d3748;
}

/* =========================
   Responsive Styles
   ========================= */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }

    .header-interactive h1 {
        font-size: 2rem;
    }

    .header-interactive p {
        font-size: 1.1rem;
    }

    .explore-diagrams-btn-wrapper,
    .follow-btn-wrapper {
        position: static !important;
        display: block;
        width: 100%;
        margin: 0.5rem 0 0 0;
        text-align: center;
    }
    .explore-diagrams-btn,
    .follow-btn {
        width: 60%;
        min-width: 180px;
        margin: 0.1rem auto;
        font-size: 1rem;
        padding: 0.7rem 0.5rem;
        display: inline-block;
        float: none;
    }
    .demo-section {
        padding: 1.5rem;
    }
 

    .demo-title {
        font-size: 1.5rem;
    }

    .demo-btn, .chat-input button, .clear-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .chat-input input {
        font-size: 0.9rem;
        padding: 0.6rem;
    }

    .demo-area {
        min-height: 150px;
        max-height: 250px;
    }

    .explanation {
        font-size: 1rem;
    }

    .how-it-works h4 {
        font-size: 1.2rem;
    }

    .step {
        font-size: 0.9rem;
    }

    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
}

/* =========================
   Additional Interactive Diagram Styles
   ========================= */
.step-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Individual Step */
/* .step {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #356c67;
    box-shadow: 0 4px 12px rgba(53, 108, 103, 0.1);
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.5s ease;
} */

.step.active {
    transform: translateX(0);
    opacity: 1;
}

.step-title {
    font-weight: 700;
    color: #356c67;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.step-code {
    background: #2d3748;
    color: #e2e8f0;
    padding: 1rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    margin: 0.8rem 0;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.step-explanation {
    color: #4a5568;
    font-style: italic;
    margin-top: 0.8rem;
    font-size: 1rem;
}

/* Final Result */
.final-result {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.5s ease;
}

.final-result.show {
    transform: scale(1);
    opacity: 1;
}

/* Saree Analogy */
.saree-analogy {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 2px solid #f39c12;
}

.saree-analogy h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.saree-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.8rem 0;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

.saree-emoji {
    font-size: 1.8rem;
}

/* Comparison Section */
.comparison-section {
    display: none;
    margin-top: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(53, 108, 103, 0.08);
    border-top: 4px solid #356c67;
}

.comparison-section h3 {
    color: #356c67;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    text-align: center;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #7a7a7a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(53, 108, 103, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
    background: linear-gradient(135deg, #356c67, #2a5550);
    color: #fff;
    font-weight: 600;
}

.comparison-table tr:hover {
    background: #4e4e4e;
}

.comparison-table td strong {
    color: #356c67;
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
/* =========================
   Mobile Responsive Updates
   ========================= */
@media (max-width: 768px) {
    .step {
        padding: 1rem;
        margin: 0.8rem 0;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-code {
        font-size: 0.8rem;
        padding: 0.8rem;
    }

    .step-explanation {
        font-size: 0.9rem;
    }

    .saree-analogy {
        padding: 1rem;
        margin: 1rem 0;
    }

    .saree-step {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }

    .saree-emoji {
        font-size: 1.5rem;
    }

    .comparison-section {
        padding: 1rem;
    }

    .comparison-table {
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem;
        min-width: 120px;
    }

    .final-result {
        padding: 1rem;
        font-size: 1rem;
    }
     .tabs {
                flex-direction: column;
                align-items: center;
            }

            .tab {
                width: 100%;
                max-width: 200px;
                text-align: center;
            }

            .code-container {
                grid-template-columns: 1fr;
            }

            .memory-diagram {
                grid-template-columns: 1fr;
            }

            .timeline-item {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
            }
}

/* =========================
   Tablet Responsive
   ========================= */
@media (min-width: 769px) and (max-width: 1024px) {
 .step-code {
        font-size: 0.85rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .saree-step {
        gap: 0.8rem;
    }
}

/* =========================
   Accessibility - Reduced Motion
   ========================= */
@media (prefers-reduced-motion: reduce) {
    .step {
        transition: opacity 0.3s ease;
        transform: none;
    }

    .final-result {
        transition: opacity 0.3s ease;
        transform: none;
    }

    .pulse {
        animation: none;
    }
}

/* =========================
   Print Styles
   ========================= */
@media print {
    .step {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .comparison-section {
        display: block !important;
    }

    .demo-controls {
        display: none;
    }
}
/* =========================
   Universal Table Styles (Responsive)
   ========================= */
.responsive-table,
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #7a7a7a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(53, 108, 103, 0.1);
    font-family: 'Kalam', 'Comic Sans MS', 'Caveat', cursive, sans-serif;
}

.responsive-table th,
.responsive-table td,
.comparison-table th,
.comparison-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.responsive-table th,
.comparison-table th {
    background: linear-gradient(135deg, #356c67, #2a5550);
    color: #ff6f61 !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.responsive-table td,
.comparison-table td {
    color: #f0f0f0 !important;
    transition: background 0.3s ease;
}

.responsive-table tr:hover,
.comparison-table tr:hover {
    background: rgba(255, 111, 97, 0.1);
}

/* =========================
   Container Overrides for Tables
   ========================= */
.demo-section .responsive-table,
.demo-section .comparison-table {
    margin: 1rem 0;
    font-size: 0.85rem;
}

.step .responsive-table,
.step .comparison-table {
    width: 100%;
    max-width: 100%;
}

/* =========================
   Tablet Responsive (769px - 1024px)
   ========================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .responsive-table,
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .responsive-table th,
    .responsive-table td,
    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem 0.5rem;
    }
}

/* =========================
   Mobile Responsive (up to 768px)
   ========================= */
@media (max-width: 768px) {
    .responsive-table,
    .comparison-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 0.75rem;
        -webkit-overflow-scrolling: touch;
        border-radius: 8px;
    }
    
    .responsive-table th,
    .responsive-table td,
    .comparison-table th,
    .comparison-table td {
        min-width: 100px;
        padding: 0.5rem 0.4rem;
        font-size: 0.75rem;
    }
    
    /* Make demo sections full width on mobile */
    .demo-section {
        padding: 1rem;
    }
    
    .demo-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
}