﻿/* Base Styles */
html {
    font-size: 14px;
    line-height: 1.6;
    scrollbar-width: auto; /* "auto" makes it wider than "thin" */
    scrollbar-color: #c0c0c0 #f0f0f0; /* thumb color track color */
    overflow-x: hidden;
}
.vpvws-logo {
    height: 32px;
}
html {
    scroll-behavior: smooth;
}

/* main.css */
.vpv-injected-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    border: 1px solid #ccc;
}
.vpv-raw-html {
    background-color: #fef3c7; /* light yellow */
    padding: 1rem;
    border: 1px dashed #f59e0b;
    font-family: monospace;
    white-space: pre-wrap;
    overflow-x: auto;
}

    .vpv-injected-table th,
    .vpv-injected-table td {
        padding: 8px;
        border: 1px solid #ccc;
        text-align: left;
    }

    .vpv-injected-table thead {
        background-color: #f4f4f4;
    }

.copy-button {
    margin-bottom: 0.5rem;
    padding: 4px 8px;
    border: 1px solid #ccc;
    background-color: #eee;
    cursor: pointer;
    font-size: 0.9rem;
}

.treeview-slider-wrapper {
    width: 100%;
    height: 300px; /* You can increase for mobile & desktop with media queries */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.treeview-slider-image {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    transition: opacity 0.3s ease-in-out;
}

.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}

@media (min-width: 768px) {
    .treeview-slider-wrapper {
        height: 400px;
    }
}

@media (min-width: 1200px) {
    .treeview-slider-wrapper {
        height: 500px;
    }
}



/* Works on Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 12px; /* Wider vertical scrollbar */
    height: 12px; /* Wider horizontal scrollbar */
}

/* Handle (the moving part) */
::-webkit-scrollbar-thumb {
    background-color: #c0c0c0; /* Light gray */
    border-radius: 6px;
    border: 3px solid white; /* Creates padding inside the track */
}
iframe {
    border: 1px solid #ccc;
}
pre code {
    white-space: inherit;
}

#content,
#filtered-content {
    /*height: auto;*/
    overflow: visible;
}
/* Track (background) */
::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 6px;
}

#sidebar::-webkit-scrollbar,
#filtered-content::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

#sidebar::-webkit-scrollbar-thumb,
#filtered-content::-webkit-scrollbar-thumb {
    background-color: #c0c0c0;
    border-radius: 6px;
}

#sidebar::-webkit-scrollbar-track,
#filtered-content::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.contact-info {
    color: #FCE3C5;
}

#sidebar {
    scrollbar-width: auto;
    scrollbar-color: #c0c0c0 #f0f0f0;
}

#filtered-content {
    scrollbar-width: auto;
    scrollbar-color: #c0c0c0 #f0f0f0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333;
    margin: 0;
    padding: 0;
    padding-top: 80px; /* Same as nav.navbar height */
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-x: hidden;
}

.container-fluid {
    display: flex;
    flex: 1;
    padding: 20px;
    /*margin-left: 250px;*/ /* Default margin for desktop */
    /*transition: margin-left 0.3s ease;*/
}

nav.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1100;
} 
.navbar .navbar-brand {
    font-weight: bold;
    font-size: 1.25rem;
    color: #FCE3C5;
}

nav.navbar {
    height: 80px; /* Set fixed height */
    align-items: center; /* Vertically center contents */
}
/* Optional override for specific cases only */
.row.no-left-gutter {
    margin-left: 0 !important;
}

#content {
    background-color: #ffffff;
    flex-grow: 1;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
}

.navbar .navbar-nav .nav-link {
    color: #FCE3C5;
    padding: 0.5rem 1rem;
}

    .navbar .navbar-nav .nav-link:hover {
        background-color: #ffffff;
        border-radius: 4px;
    }

/* Sidebar */
.sidebar {
    background-color: #ffffff;
    width: 250px; /* Default width for desktop */
    padding: 50px 20px 20px 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    height: 85vh;
    display: none;
    overflow-y: auto;
    z-index: 1000;
    transition: left 0.3s ease-in-out, width 0.3s ease-in-out;
}

.navbar-toggler {
}

#sidebar.open {
    left: 250px; /* Sidebar visible */
}

.sidebar.active {
    display: block; /* or any other property to make it visible */
}

.container-fluid.sidebar-open #sidebar {
    left: 0; /* Open sidebar on mobile when the container has sidebar-open class */
}

#sidebar h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #333;
}

#tree-search {
    width: calc(100% - 45px); /* Account for padding */
    padding: 8px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid #ddd;
    /*margin-top: 45px;*/
    margin: 10px 0;
}

/* Treeview styles */
.treeview {
    font-size: 14px;
    font-family: Arial, sans-serif;
}

    .treeview ul {
        list-style: none;
        margin: 0;
        padding-left: 20px;
    }

    .treeview li {
        padding: 4px 0;
    }

        .treeview li a {
            display: inline-block;
            text-decoration: none;
            color: #333;
            padding: 6px 8px;
            border-radius: 4px;
            transition: color 0.2s ease, background 0.2s ease;
        }

            .treeview li a:hover {
                background-color: #f9f9f9;
                color: #ff6a00;
            }

            .treeview li a.active {
                font-weight: bold;
                color: #ff6a00;
                text-decoration: underline;
            }

        .treeview li > ul {
            display: none;
            margin-top: 10px;
        }

    .treeview span:focus {
        outline: 2px solid #ff6a00;
        background-color: rgba(255, 106, 0, 0.1);
        border-radius: 4px;
    }

/* Collapsible menu styles */
.collapsible {
    display: inline-block;
    cursor: pointer;
    padding-left: 16px;
    background-repeat: no-repeat;
    background-position: left center;
    transition: background 0.2s ease, opacity 0.2s ease;
}

    .collapsible.collaps {
        background: url("../../images/arrow_closed_lblue.gif") no-repeat left center;
    }

    .collapsible.expand {
        background: url("../../images/arrow_open_lblue.gif") no-repeat left center;
    }

    .collapsible.empty {
        background: url("../../images/arrow_gray.gif") no-repeat left center;
        opacity: 0.6;
    }

    .collapsible.collaps.empty,
    .collapsible.expand.empty {
        background: url("../../images/arrow_gray.gif") no-repeat left center;
        padding-left: 16px;
        cursor: not-allowed;
        pointer-events: none;
        opacity: 0.6;
    }

[data-docid] {
    max-width: 100%;
    overflow-x: auto;
}

/* Main Content */
#filtered-content {
    flex: 1;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-right: 235px;
    height: 75vh;
    overflow-y: auto;
}


main {
    font-size: 1rem;
    color: #333;
}

/* Footer */
.footer {
    padding: 1rem;
    background-color: #fff;
    border-top: 1px solid #ddd;
    color: #333;
    text-align: center;
    font-size: 0.875rem;
    margin-top: auto; /* Pushes the footer to the bottom */
    position: relative; /* Ensures it does not overlap content */
    bottom: 0;
}

footer a {
    color: #ff6a00;
    text-decoration: none;
}

    footer a:hover {
        text-decoration: underline;
    }


@media (min-width: 768px) {
    html {
        font-size: 16px;
    }

    #sidebar {
        left: 0; /* Ensure sidebar is visible on desktop */
        width: 250px; /* Sidebar width for desktop */
        height: 85vh;
    }
}

.margin-badge {
    margin-top: -45px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    list-style: none;
    margin-left: 260px;
}
/* Media Queries for Responsive Design */
@media (max-width: 767px) {
    .search-container {
        margin-left: 0;
        width: calc(100% - 30px);
        margin-right: auto;
        margin-left: 50px;
    }

    #sidebar {
        left: -450px; /* Initially hidden, sidebar width set to 450px */
        width: 450px;
    }

    #content,
    #filtered-content {
        height: auto !important;
        overflow: visible !important;
        width: 100%;
    }

    .container-fluid {
        margin-left: 0; /* Remove margin on mobile for full screen width */
        padding: 10px; /* Optional: Adjust padding for mobile */
    }


    .navbar .navbar-brand {
        margin-left: 80px;
    }

    .breadcrumb {
        margin-left: 80px;
        flex-wrap: wrap;
    }
    /* Sidebar toggle button */
    #sidebar-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px; /* ✅ Move to right */
        left: auto; /* ✅ Clear left setting */
        background: none;
        border: none;
        color: #E2CBAB;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1100;
        outline: none;
    }

        /* Optionally, you can still show the hover effect */
        #sidebar-toggle:hover {
            border-radius: 4px; /* Optional: Add slight border-radius for smoother effect */
        }

        /* Add border when the button is active (clicked) */
        #sidebar-toggle.clicked {
            border: 2px solid #f0f0f0; /* Add a border when the button is clicked */
        }

    .sidebar {
        display: none; /* or use a class like "collapsed" */
    }
}

.code-container {
    position: relative;
}

.copy-btn {
    position: absolute;
    top: -35px;
    right: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

    .copy-btn:hover {
        background-color: #45a049;
    }

    .copy-btn:focus {
        outline: none;
    }

.full-width {
    width: 100%;
}

#filtered-content > [data-docid] {
    width: 100%;
    display: block; /* ensure it behaves like a block container */
}

.container {
    width: 100%;
}
/* Header styles */
header {
    /* background-color: #232E3A;*/
    /*    padding: 1rem 0;*/
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 24px 0;
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .card img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        margin-bottom: 12px;
    }

    .card h3 {
        font-size: 18px;
        margin: 0 0 8px;
        font-weight: 600;
    }

    .card p {
        font-size: 14px;
        color: #555;
        margin: 0;
    }

@media (min-width: 992px) {
    .container-lg, .container-md, .container-sm, .container {
        width: 100%;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

    nav .logo h1 {
        color: white;
        font-size: 2rem;
    }

.nav-links {
    list-style: none;
    display: flex;
}

    .nav-links li {
        margin: 0 1rem;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-size: 1.2rem;
    }


.hero-text {
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
}

/* Info section */
.info {
    padding: 2rem;
    text-align: center;
    background-color: white;
}

    .info h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

.service {
    display: inline-block;
    width: 30%;
    margin: 1rem;
    background-color: #0077cc;
    padding: 1.5rem;
    color: white;
    border-radius: 8px;
    text-align: center;
}

    .service h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

/* Footer styles */
footer {
    background-color: #003366;
    padding: 1rem 0;
    color: white;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    #sidebar {
        position: absolute;
        left: -450px;
        top: 0;
        height: 85vh;
        z-index: 1000;
        width: 100%;
    }

    .navbar .navbar-nav {
        position: static;
        transform: none;
        flex-direction: column;
        align-items: center;
    }

    #filtered-content {
        height: 75vh;
    }

    .sidebar-open #sidebar {
        left: 0;
    }

    .sidebar-open {
        /*margin-left: 450px;*/ /* shift content only when sidebar is open */
    }

    .nav-links {
        display: none; /* Hide the menu for small screens */
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .service {
        width: 100%;
        margin: 1rem 0;
    }
}

@media (min-width: 769px) {
    #sidebar {
        position: relative;
        height: 85vh;
    }

    #content {
        margin-left: 0; /* no margin on larger screens since sidebar is part of the flow */
    }
}
/* Hero section */
.hero {
/*    background-image: url('/images/vpvws.png');*/
    background-size: cover;
    background-position: center;
    color: white;
    height: 80vh;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    text-align: center;
}

@media (min-width: 1400px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 100% !important;
    }
}

@media (min-width: 992px) { /* Bootstrap's 'lg' breakpoint for desktop */
    .sidebar {
        width: 300px !important;
    }
}

.content-width {
    max-width: 100%;
    display: flex;
    flex-wrap: nowrap;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
}

/* Info section */
.info {
    padding: 2rem;
    text-align: center;
    background-color: white;
    max-width: 1400px;
}

    .info h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.hidden {
    display: none;
}

.tree-open {
    display: block;
}

.tree-closed {
    display: none;
}

.no-documents-message {
    text-align: center;
    padding: 20px;
    font-size: 18px;
    color: #888;
}

.add-node-input, .add-node-textarea {
    width: 100%;
    margin-bottom: 10px;
}

.add-node-textarea {
    height: 100px;
}

.add-node-button {
    margin-right: 5px;
}

.treeview-indent {
    width: 15px;
    display: inline-block;
}

.treeview-indent {
    display: inline-block;
    width: 15px;
}

.tree-visible {
    display: block;
}

.tree-hidden {
    display: none;
}

.tree-spacer {
    width: 15px;
    display: inline-block;
}

.filter-tree {
    display: flex;
    align-items: center;
    width: 100%;
}

.footer {
    border-top: 1px solid #E47911;
    flex-shrink: 0;
    height: 300px;
}

.bg-primary {
    background-color: #001F35 !important;
    color: inherit;
}

.navbar-toggler {
    position: relative;
    z-index: 1100;
    margin-right: 15px;
}

.service-section {
    padding: 40px 20px;
    border-bottom: 1px solid #ddd;
}

.service-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 20px;
}

.service-image {
    max-width: 200px;
    height: auto;
    flex-shrink: 0;
}

.service-text {
    flex: 1;
    min-width: 250px;
}

    .service-text h3 {
        margin-bottom: 10px;
        font-size: 1.5em;
    }

.profile-container {
    background-color: #fff;
    padding: 2rem;
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    line-height: 1.6;
    font-size: 1rem;
}

    .profile-container h1 {
        font-size: 2.2rem;
        font-weight: bold;
    }

    .profile-container h2 {
        margin-top: 2rem;
        font-size: 1.4rem;
        font-weight: 600;
        border-bottom: 2px solid #eee;
        padding-bottom: 0.5rem;
    }

    .profile-container ul {
        padding-left: 1.5rem;
    }

    .profile-container li {
        margin-bottom: 0.5rem;
    }

.team-section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

    .team-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

.team-member {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

    .team-member img {
        width: 160px;
        height: 160px;
        object-fit: cover;
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    }

    .team-member h3 {
        font-size: 1.3rem;
        margin: 0;
    }

    .team-member p {
        margin-bottom: 0.5rem;
    }

.profile-image-canvas {
    display: block;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

#menuResults {
    position: relative;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}

.menu-suggestion-dropdown {
    position: absolute;
    width: 100%;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
}

.admin-pending-box {
    margin-top: 50px;
    padding: 20px;
    text-align: center;
}

.admin-pending-spinner {
    width: 64px;
    height: 64px;
    display: inline-block;
}

#nav-role {
    transition: all 0.3s ease;
}

.visually-hidden {
    visibility: hidden;
}

.d-none {
    display: none !important;
}
.orca-animation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    height: auto;
    z-index: 0;
    pointer-events: none;
}

#orca-bg {
    width: 100%;
    height: 100%;
    opacity: 0.4;
    display: block;
}

.service-scroll-zone {
    position: relative;
}

#home-sidebar-links {
    position: fixed;
    top: 80px;
    left: -300px;
    width: 300px;
    height: calc(100vh - 80px);
    background-color: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    z-index: 1000;
    transition: left 0.3s ease-in-out;
}
.embed-frame {
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    height: 600px;
}
.pricing-section {
    padding: 2rem;
    background: #f9f9f9;
    font-family: sans-serif;
}

.pricing-container {
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

    .pricing-card.featured {
        border: 2px solid #007bff;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

.pricing-card-title {
    font-size: 1.5rem;
}

.pricing-price {
    font-size: 1.2rem;
    color: #333;
}

.monthly-price {
    font-size: 0.9rem;
}

.pricing-features {
    padding-left: 1rem;
    margin-top: 1rem;
    list-style-type: disc;
}

.pricing-button {
    display: inline-block;
    margin-top: 1rem;
    background: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
}

    .pricing-button:hover {
        background: #0056b3;
    }

.pricing-note {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #555;
}
.demo-section {
    padding: 3rem 1rem;
    background: #f5f5f5;
    text-align: center;
}

.demo-container {
    max-width: 1100px;
    margin: 0 auto;
}

.demo-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.demo-subtext {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.demo-image-wide {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.demo-button {
    background-color: #007bff;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    transition: background-color 0.2s ease-in-out;
}

    .demo-button:hover {
        background-color: #0056b3;
    }
.treeview-benefits {
    padding: 2rem 0;
}

    .treeview-benefits .benefit-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 2rem;
    }

    .treeview-benefits .benefit-text {
        flex: 1 1 50%;
        padding: 1rem;
        box-sizing: border-box;
    }

    .treeview-benefits .benefit-image {
        flex: 1 1 50%;
        padding: 1rem;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .treeview-benefits .benefit-image img {
            width: 100%;
            max-width: 300px; /* optional: cap max width */
            height: auto;
            border-radius: 12px;
        }

/* Responsive behavior (optional but recommended) */
@media (max-width: 768px) {
    .treeview-benefits .benefit-text,
    .treeview-benefits .benefit-image {
        flex: 1 1 100%;
        text-align: center;
    }

        .treeview-benefits .benefit-image img {
            width: 80%;
        }
}
.widget-container {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: sans-serif;
}

.widget-sidebar {
    width: 250px;
    padding: 10px;
    background-color: #f9f9f9;
    border-right: 1px solid #ddd;
}

.tree-search {
    width: 100%;
    padding: 4px;
    font-size: 14px;
}

.widget-content {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
}
.enhanced-section {
    background-color: #f9f9fc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1rem;
    color: #444;
}

.section-heading {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.iframe-code-block {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    position: relative;
}

    .iframe-code-block pre {
        margin: 0;
        overflow-x: auto;
        font-size: 0.9rem;
        line-height: 1.4;
    }

.copy-button {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.4rem 0.7rem;
    font-size: 0.85rem;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

    .copy-button:hover {
        background-color: #0056b3;
    }
.demo-gif-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* ensures it stacks on small screens */
    margin-top: 20px;
}

.demo-gif {
    max-width: 48%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .demo-gif {
        max-width: 100%;
    }
    #nav-role{
        margin-top:45px;
    }
}
