/* input(922,5): run-time error CSS1019: Unexpected token, found '}' */
/* Portfolio Index Page Styles */

/* Note: CSS variables like --primary-color, --secondary-color are defined inline via C# */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-color);
    background: linear-gradient( to right, var(--bg1-color),var(--bg2-color) );
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background 0.3s ease;
}

/* PREMIUM TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--portfolio-font), Georgia, serif; /* Default from FontConstants.DefaultFontName */
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* FLOATING GLASSMORPHISM NAV */
.portfolio-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-bs-theme="dark"] .portfolio-nav {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
}

.portfolio-nav.scrolled {
    top: 10px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
}

    .nav-link:hover, .nav-link.active {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: #fff !important;
        transform: translateY(-2px);
    }

/* HERO SECTION WITH CANVAS ANIMATION */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    line-height: normal !important;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.profile-image {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    object-fit: cover;
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.3);
    animation: float 6s ease-in-out infinite, fadeInUp 0.8s ease 0.6s both;
}

/* ANIMATIONS */
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }

    10%, 30% {
        transform: scale(1.2);
    }

    20%, 40% {
        transform: scale(1.1);
    }
}

.heart-beat {
    animation: heartbeat 1.5s infinite;
    display: inline-block;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PREMIUM BUTTON */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .btn-premium:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
        color: #fff;
    }

    .btn-premium::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn-premium:hover::before {
        width: 300px;
        height: 300px;
    }

/* SOCIAL ICONS */
.social-link > i {
    font-size: 30px;
}

.social-links {
    display: flex;
    gap: 0px;
    margin-top: 32px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .social-link:hover {
        transform: translateY(-4px);
    }

/* SECTION STYLING */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* PREMIUM CARDS */
.card-premium {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .card-premium::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .card-premium:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-color);
    }

        .card-premium:hover::before {
            transform: scaleX(1);
        }

a.card-premium {
    color: inherit;
    text-decoration: none;
}

    a.card-premium:hover {
        color: inherit;
    }

.card-image {
    width: 100%;
    aspect-ratio: 10/10;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 24px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

    .read-more:hover {
        gap: 12px;
    }

/* SKILLS */
.skill-item {
    /* margin-bottom: 32px;*/
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 15px;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.skill-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.skill-percent {
    font-weight: 700;
    color: var(--primary-color);
}

.skill-bar {
    height: 8px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* THEME TOGGLE */
.theme-toggle {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

    .theme-toggle:hover {
        transform: scale(1.1) rotate(180deg);
    }

/* CHAT TOGGLE */
.chat-toggle {
    position: fixed;
    bottom: 110px;
    right: 32px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(var(--primary-color-rgb), 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

    .chat-toggle:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 8px 30px rgba(var(--primary-color-rgb), 0.6);
        color: white;
    }

    .chat-toggle i {
        font-size: 1.5rem;
    }

/* GALLERY STYLES */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(139, 92, 246, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Gallery Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

    .gallery-lightbox.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

    .lightbox-content img {
        max-width: 100%;
        max-height: 80vh;
        object-fit: contain;
        border-radius: 8px;
    }

#lightboxCaption {
    color: #fff;
    margin-top: 16px;
    font-size: 1.1rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

    .lightbox-close:hover {
        transform: rotate(90deg);
    }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

    .lightbox-nav:hover {
        background: rgba(255, 255, 255, 0.4);
        transform: translateY(-50%) scale(1.1);
    }

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* ========================================
   BUSINESS HERO MODE STYLES
   ======================================== */

.hero-badge-business {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.15), rgba(var(--primary-color-rgb), 0.08));
    border: 1px solid rgba(var(--primary-color-rgb), 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease;
}

[data-bs-theme="dark"] .hero-badge-business {
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.25), rgba(var(--primary-color-rgb), 0.1));
    border-color: rgba(var(--primary-color-rgb), 0.4);
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 560px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-features-business {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease 0.35s both;
}

.hero-features-business p {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
}

.hero-features-business i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.business-hero-image {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    object-fit: contain;
    animation: float 6s ease-in-out infinite, fadeInUp 0.8s ease 0.6s both;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

[data-bs-theme="dark"] .business-hero-image {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .portfolio-nav {
        width: calc(100% - 32px);
        padding: 8px;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 6px 12px !important;
    }

    .section {
        padding: 80px 0;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .skill-name {
        font-weight: 200;
        font-size: 0.7rem;
    }

    .skill-header > img {
        width: 40px !important;
        height: 40px !important;
    }

    .skill-type {
        font-size: .55rem;
    }

    .theme-toggle {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }

    .chat-toggle {
        width: 48px;
        height: 48px;
        bottom: 16px;
        left: 16px;
    }

        .chat-toggle i {
            font-size: 1.25rem;
        }

    /* Business Hero Responsive */
    .hero-badge-business {
        font-size: 0.72rem;
        padding: 5px 14px;
    }

    .hero-features-business {
        gap: 6px;
    }

    .hero-features-business p {
        font-size: 0.9rem;
    }

    .business-hero-image {
        max-width: 280px;
        margin-top: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }
}

/* ✅ CRITICAL: Apply font to ALL elements */
body,
.portfolio-content,
p, span, div, a, li, td, th,
.nav-link, /* ✅ NAVBAR FIX */
.navbar { /* ✅ NAVBAR FIX */
    font-family: var(--portfolio-font) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--portfolio-font) !important;
}

/* Preserve monospace for code blocks */
code, pre, .code-block {
    font-family: 'Fira Code', 'Courier New', monospace !important;
}

/*[data-bs-theme="dark"] {
    --text-color: #f1f5f9;
    --text-light: #cbd5e1;
    --bg-color: #0f172a;
    --card-bg: #1e293b;
    --border-color: #334155;
    --bs-heading-color: #cbd5e1;
}*/

/* Before/After Content Embeddings */
.embeddings-after-content {
    width: 100%;
    margin: 2rem 0;
}

.embeddings-before-content {
    width: 100%;
    margin: 2rem 0;
    text-align: center; /* ✅ Centered for announcements */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 2rem;
    color: white;
    border-radius: 12px;
}

/* Centered embed frame for AfterContent */
.embed-frame {
    max-width: 900px;
    margin: 2rem auto;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 6px 30px rgba(2,6,23,0.06);
    overflow: hidden;
}

    .embed-frame .embed-responsive {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%; /* 16:9 */
    }

    .embed-frame .embed-responsive-item {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        display: block;
        border-radius: 8px;
    }

    /* Sidebar Embeddings (Fixed Left) */
.embeddings-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    max-width: 300px;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-left: none;
    border-radius: 0 12px 12px 0;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] .embeddings-sidebar {
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
}

.embeddings-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    max-width: 250px; /* ✅ Narrower than before */
    width: 250px; /* ✅ Fixed width */
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-left: none;
    border-radius: 0 12px 12px 0;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

    /* ✅ Add toggle button for sidebar */
    .embeddings-sidebar::before {
        content: "☰";
        position: absolute;
        right: 0;
        top: 10px;
        background: var(--primary-color);
        color: white;
        padding: 5px 10px;
        border-radius: 0 8px 8px 0;
        cursor: pointer;
        display: none; /* Show only on mobile */
    }

@media (max-width: 768px) {
    .embeddings-sidebar {
        position: fixed;
        left: -250px;
        top: 50%;
        transform: translateY(-50%);
        width: 250px;
        transition: left 0.3s ease;
    }

    .embeddings-sidebar.active {
        left: 0;
    }

    .embeddings-sidebar::before {
        display: block;
    }
}

/* ══════════════════════════════════════════════════════
   HERO — Badge pill & description (Common Settings)
   badge pill: above hero-label with a pulsing dot
   hero-desc: between hero-subtitle and CTA buttons,
              styled with a subtle left accent bar
   ══════════════════════════════════════════════════════ */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px 4px 10px;
    background: linear-gradient(135deg,
        rgba(var(--primary-color-rgb, 102,126,234), 0.13),
        rgba(var(--primary-color-rgb, 102,126,234), 0.06));
    border: 1px solid rgba(var(--primary-color-rgb, 102,126,234), 0.28);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary-color, #667eea);
    margin-bottom: 10px;
}

.hero-badge-pill::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color, #667eea);
    flex-shrink: 0;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.3); }
}

.hero-desc {
    font-size: 0.97rem;
    color: var(--text-light, #64748b);
    line-height: 1.72;
    margin-top: -2px;
    margin-bottom: 22px;
    max-width: 500px;
    border-left: 3px solid rgba(var(--primary-color-rgb, 102,126,234), 0.35);
    padding-left: 12px;
}

[data-bs-theme="dark"] .hero-desc {
    color: var(--text-light, #94a3b8);
    border-left-color: rgba(var(--primary-color-rgb, 102,126,234), 0.5);
}
    }

@media (max-width: 768px) {
    .embeddings-sidebar {
        position: fixed; /* ✅ Keep fixed on mobile */
        left: -250px; /* ✅ Hidden by default */
        top: 50%;
        transform: translateY(-50%);
        width: 250px;
        transition: left 0.3s ease;
    }

        .embeddings-sidebar.active {
            left: 0; /* ✅ Show when active */
        }

        .embeddings-sidebar::before {
            display: block; /* ✅ Show toggle button */
        }
}

/* Floating Widgets Container - raise z-index to avoid being hidden and ensure touchable area on mobile */
/* Floating Widgets Container - FIXED WITH WIDTH */
.floating-widgets-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 400px; /* ✅ ADDED: Fixed width */
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

    .floating-widgets-container .floating-widget {
        pointer-events: auto;
        width: 100%; /* ✅ ADDED: Full width of container */
    }

.floating-widget {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    width: 100%; /* ✅ ADDED: Explicit width */
    animation: slideInRight 0.5s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-widgets-container {
        width: calc(100% - 20px); /* ✅ UPDATED: Full width minus padding */
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .floating-widget iframe {
        height: 200px;
    }
}

[data-bs-theme="dark"] .floating-widget {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.floating-widget .embed-responsive {
    padding-bottom: 56.25%;
}

.floating-widget iframe {
    width: 100%;
    height: 225px;
    border: none;
    display: block;
}

.floating-widget .embed-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.floating-widget .embed-responsive-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .embeddings-sidebar {
        position: static;
        transform: none;
        max-width: 100%;
        border-radius: 12px;
        border-left: 1px solid var(--border-color);
        margin: 1rem;
    }

    .floating-widgets-container {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .floating-widget {
        max-width: 100%;
    }

        .floating-widget iframe {
            height: 200px;
        }
}
