/* overview.css - Phryloc Portfolio Styles */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Space+Grotesk:wght@500;700&display=swap');

/* ============================================================================
   BASE STYLES
   ============================================================================ */

html, body {
    background-color: #15152a;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ============================================================================
   WRAPPER - Main app container
   ============================================================================ */

.dd-wrapper {
    font-family: 'Inter', sans-serif;
    background-color: #15152a;
    color: #e0e0e0;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Background grid pattern */
.dd-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(16, 185, 129, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 100px 100px;
    z-index: 0;
    pointer-events: none;
}

/* ============================================================================
   DECORATIVE ELEMENTS - Fixed position accents
   ============================================================================ */

.dd-wrapper .vertical-line {
    position: fixed;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.2), rgba(16, 185, 129, 0.2), transparent);
    z-index: 0;
    pointer-events: none;
    top: 0;
}

.dd-wrapper .vertical-line.line-1 { left: 15%; }
.dd-wrapper .vertical-line.line-2 { left: 45%; }
.dd-wrapper .vertical-line.line-3 { left: 75%; }

.dd-wrapper .dot-accent {
    position: fixed;
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.dd-wrapper .dot-accent.dot-1 { top: 20%; left: 10%; }
.dd-wrapper .dot-accent.dot-2 { top: 60%; right: 15%; left: auto; opacity: 0.6; background: #8b5cf6; box-shadow: 0 0 20px rgba(139, 92, 246, 0.5); }
.dd-wrapper .dot-accent.dot-3 { bottom: 30%; left: 40%; top: auto; opacity: 0.4; }

/* ============================================================================
   HEADER SECTION
   ============================================================================ */

.dd-wrapper .header {
    background: linear-gradient(135deg, #242f3f 0%, #151d30 100%) !important;
    padding: 1.5rem 2rem 1rem !important;
    position: relative !important;
    z-index: 10 !important;
    border-bottom: 2px solid transparent !important;
    border-image: linear-gradient(90deg, #8b5cf6, #10b981) 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    min-height: 220px !important;
}

/* Sigmoid curve background */
.dd-wrapper .header::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 56%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300" preserveAspectRatio="none"><defs><linearGradient id="band1" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" style="stop-color:%2306d6a0;stop-opacity:0.28" /><stop offset="100%" style="stop-color:%238b5cf6;stop-opacity:0.32" /></linearGradient><linearGradient id="band2" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" style="stop-color:%238b5cf6;stop-opacity:0.30" /><stop offset="100%" style="stop-color:%23a78bfa;stop-opacity:0.35" /></linearGradient><linearGradient id="band3" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" style="stop-color:%23a78bfa;stop-opacity:0.25" /><stop offset="100%" style="stop-color:%23c4b5fd;stop-opacity:0.28" /></linearGradient></defs><path d="M 0 300 Q 200 292 400 280 Q 600 250 700 200 Q 850 130 1000 100 L 1000 166.67 Q 850 186.67 700 233.33 Q 600 266.67 400 286.67 Q 200 294.67 0 300 Z" fill="url(%23band1)"/><path d="M 0 300 Q 200 294.67 400 286.67 Q 600 266.67 700 233.33 Q 850 186.67 1000 166.67 L 1000 233.33 Q 850 243.33 700 266.67 Q 600 283.33 400 293.33 Q 200 297.33 0 300 Z" fill="url(%23band2)"/><path d="M 0 300 Q 200 297.33 400 293.33 Q 600 283.33 700 266.67 Q 850 243.33 1000 233.33 L 1000 300 Z" fill="url(%23band3)"/></svg>') no-repeat;
    background-size: cover;
    background-position: bottom right;
    z-index: 0;
    pointer-events: none;
}

.dd-wrapper .header > * {
    position: relative;
    z-index: 1;
}

/* Header image section (left side with avatar and chat bubble) */
.dd-wrapper .header-image-section {
    position: absolute !important;
    left: 1rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    flex-shrink: 0 !important;
    z-index: 2 !important;
    max-width: calc(50% - 200px) !important;
}

.dd-wrapper .header-image-placeholder {
    width: 100px !important;
    height: 100px !important;
    background: linear-gradient(135deg, #242f3f 0%, #151d30 100%) !important;
    border: 3px solid #10b981 !important;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4), 0 4px 12px rgba(24, 169, 153, 0.2) !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Hide scrollbars on all iframes in header */
.dd-wrapper .header iframe {
    overflow: hidden !important;
    border: none !important;
}

.dd-wrapper .header-image-placeholder iframe {
    overflow: hidden !important;
}

.dd-wrapper .person-silhouette {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80%;
}

/* Chat bubble (LLM message) */
.dd-wrapper .chat-bubble {
    background: linear-gradient(135deg, #242f3f 0%, #151d30 100%) !important;
    border: 2px solid #8b5cf6 !important;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3) !important;
    border-radius: 12px !important;
    padding: 1rem 1.5rem !important;
    position: relative !important;
    width: 220px !important;
    height: 100px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.dd-wrapper .chat-bubble::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #8b5cf6;
}

.dd-wrapper .chat-bubble::after {
    content: '';
    position: absolute;
    left: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #242f3f;
}

.dd-wrapper .chat-bubble-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #a78bfa !important;
    margin-bottom: 0.3rem !important;
}

.dd-wrapper .chat-bubble-text {
    font-size: 12px !important;
    color: #cbd5e1 !important;
    line-height: 1.4 !important;
}

/* Wind graphic (behind title) */
.dd-wrapper .flow-graphic {
    position: absolute !important;
    width: 359px !important;
    height: 144px !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    filter: drop-shadow(0 4px 16px rgba(16, 185, 129, 0.2)) !important;
    opacity: 0.65 !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

.dd-wrapper .flow-graphic iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    background: transparent !important;
    overflow: hidden !important;
}

/* Header content (center) */
.dd-wrapper .header-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: center !important;
    position: relative !important;
    z-index: 1 !important;
    height: 100% !important;
    min-height: 180px !important;
    padding: 1rem 0 !important;
}

.dd-wrapper .header-title-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    flex: 1 !important;
}

.dd-wrapper .header h1 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700 !important;
    font-size: 72px !important;
    color: #e2e8f0 !important;
    margin-bottom: 0 !important;
    letter-spacing: -3px !important;
    position: relative !important;
    z-index: 2 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.dd-wrapper .header h1::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    border-radius: 50%;
    margin-left: 8px;
    vertical-align: middle;
}

.dd-wrapper .header-subtitle {
    font-size: 16px !important;
    color: #a8b5c7 !important;
    font-weight: 400 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    margin-top: 0 !important;
    position: relative !important;
    z-index: 2 !important;
}

/* ============================================================================
   NAVIGATION BAR
   ============================================================================ */

.dd-wrapper .nav-wrapper {
    background-color: rgba(21, 29, 48, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), 0 0 20px rgba(139, 92, 246, 0.15) !important;
    border-bottom: 2px solid transparent !important;
    border-image: linear-gradient(90deg, rgba(16, 185, 129, 0.4), rgba(139, 92, 246, 0.4)) 1 !important;
}

.dd-wrapper .nav-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 2rem !important;
}

/* Profile section */
.dd-wrapper .profile-section {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    padding: 0.75rem 0 !important;
}

.dd-wrapper .profile-image-container {
    position: relative !important;
}

.dd-wrapper .profile-image {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    border: 2px solid #10b981 !important;
    background: linear-gradient(135deg, #10b981 0%, #8b5cf6 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    color: #FFFFFF !important;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4), 0 0 40px rgba(139, 92, 246, 0.2) !important;
    transition: all 0.3s ease !important;
}

.dd-wrapper .profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.6), 0 0 50px rgba(139, 92, 246, 0.3) !important;
}

.dd-wrapper .profile-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.2rem !important;
}

.dd-wrapper .profile-greeting {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #e2e8f0 !important;
    white-space: nowrap !important;
}

.dd-wrapper .profile-subtitle {
    font-size: 11px !important;
    color: #94a3b8 !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap !important;
}

/* Mobile menu toggle */
.dd-wrapper .menu-toggle {
    display: none !important;
    flex-direction: column !important;
    gap: 6px !important;
    cursor: pointer !important;
    padding: 0.5rem !important;
    z-index: 101 !important;
}

.dd-wrapper .menu-toggle span {
    width: 28px !important;
    height: 2px !important;
    background: #e2e8f0 !important;
    transition: all 0.3s ease !important;
}

/* Nav tabs */
.dd-wrapper .nav-tabs {
    display: flex !important;
    gap: 0.5rem !important;
    padding: 0.75rem 0 !important;
    border: none !important;
    background: transparent !important;
    margin: 0 !important;
}

.dd-wrapper .nav-tab {
    padding: 0.8rem 1.2rem !important;
    color: #cbd5e1 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1.3 !important;
    min-height: 40px !important;
    border-radius: 4px !important;
    border: none !important;
    background: transparent !important;
}

.dd-wrapper .nav-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #8b5cf6);
    transition: width 0.3s ease;
}

.dd-wrapper .nav-tab:hover {
    color: #10b981 !important;
    background: rgba(16, 185, 129, 0.08) !important;
}

.dd-wrapper .nav-tab:hover::after {
    width: 70%;
}

.dd-wrapper .nav-tab.active {
    color: #10b981 !important;
    font-weight: 800 !important;
    background: rgba(16, 185, 129, 0.12) !important;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.4) !important;
}

.dd-wrapper .nav-tab.active::after {
    width: 80%;
    height: 3px;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

/* ============================================================================
   MAIN CONTAINER
   ============================================================================ */

.dd-wrapper .container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 3.2rem 2rem !important;
    position: relative !important;
    z-index: 1 !important;
}

/* ============================================================================
   CONTENT GRID
   ============================================================================ */

.dd-wrapper .content-grid {
    display: grid !important;
    grid-template-columns: 2fr 1fr !important;
    gap: 2rem !important;
}

/* ============================================================================
   CARDS
   ============================================================================ */

.dd-wrapper .card {
    background: linear-gradient(135deg, #242f3f 0%, #151d30 100%) !important;
    border: 1px solid rgba(139, 92, 246, 0.15) !important;
    padding: 0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 0 !important;
}

.dd-wrapper .card-header {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #e2e8f0 !important;
    padding: 0.5rem 1rem !important;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%) !important;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2) !important;
    position: relative !important;
    border-radius: 0 !important;
}

.dd-wrapper .card-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 1rem;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #8b5cf6);
}

.dd-wrapper .card-content {
    padding: 2rem !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #cbd5e1 !important;
}

.dd-wrapper .card-content p {
    color: #cbd5e1 !important;
    margin-bottom: 1rem !important;
}

.dd-wrapper .card-content p:last-child {
    margin-bottom: 0 !important;
}

.dd-wrapper .card-content strong {
    color: #10b981 !important;
}

/* ============================================================================
   TECHNOLOGY STACK TABS
   ============================================================================ */

.dd-wrapper .tech-tabs-wrapper {
    background: linear-gradient(135deg, #242f3f 0%, #151d30 100%) !important;
    border: 1px solid rgba(139, 92, 246, 0.15) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.dd-wrapper .tech-tabs {
    display: flex !important;
    gap: 0 !important;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2) !important;
    overflow-x: auto !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.dd-wrapper .tech-tab {
    padding: 1rem 1.5rem !important;
    background: transparent !important;
    border: none !important;
    color: #cbd5e1 !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border-bottom: 3px solid transparent !important;
    white-space: nowrap !important;
    border-radius: 0 !important;
}

.dd-wrapper .tech-tab:hover {
    color: #10b981 !important;
    background: rgba(16, 185, 129, 0.08) !important;
}

.dd-wrapper .tech-tab.active {
    color: #10b981 !important;
    border-bottom-color: #10b981 !important;
    background: rgba(16, 185, 129, 0.12) !important;
}

.dd-wrapper .tech-content-area {
    padding: 1.5rem !important;
}

.dd-wrapper .tech-pane {
    display: none !important;
}

.dd-wrapper .tech-pane.active {
    display: block !important;
}

/* ============================================================================
   BADGES
   ============================================================================ */

.dd-wrapper .badge {
    padding: 0.6rem 1.2rem !important;
    background: rgba(36, 47, 63, 0.8) !important;
    color: #10b981 !important;
    border: 1px solid rgba(16, 185, 129, 0.4) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    border-radius: 0 !important;
    display: inline-block !important;
}

.dd-wrapper .badge:hover {
    background: rgba(16, 185, 129, 0.1) !important;
    border-color: #10b981 !important;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3) !important;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.dd-wrapper .footer {
    text-align: center !important;
    padding: 3rem 2rem 2rem !important;
    color: #64748b !important;
    font-size: 13px !important;
    margin-top: 4rem !important;
    position: relative !important;
    z-index: 1 !important;
    border-top: 1px solid rgba(139, 92, 246, 0.2) !important;
}

/* ============================================================================
   RESPONSIVE STYLES
   ============================================================================ */

/* Scale chat bubble on medium screens to prevent overlap with title */
@media (max-width: 1200px) {
    .dd-wrapper .chat-bubble {
        width: 160px !important;
        height: auto !important;
        padding: 0.6rem 0.8rem !important;
    }
    .dd-wrapper .chat-bubble-title {
        font-size: 11px !important;
    }
    .dd-wrapper .chat-bubble-text {
        font-size: 10px !important;
    }
    .dd-wrapper .header-image-placeholder {
        width: 70px !important;
        height: 70px !important;
    }
}

@media (max-width: 900px) {
    .dd-wrapper .profile-section {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .dd-wrapper .nav-tabs {
        flex-wrap: wrap !important;
        gap: 0.3rem !important;
    }

    .dd-wrapper .nav-tab {
        padding: 0.5rem 0.8rem !important;
        font-size: 12px !important;
    }

    .dd-wrapper .content-grid {
        grid-template-columns: 1fr !important;
    }

    .dd-wrapper .header h1 {
        font-size: 48px !important;
    }

    .dd-wrapper .flow-graphic {
        width: 280px !important;
        height: 112px !important;
    }

    .dd-wrapper .chat-bubble {
        width: 130px !important;
        padding: 0.5rem 0.6rem !important;
    }
    .dd-wrapper .chat-bubble-title {
        font-size: 10px !important;
    }
    .dd-wrapper .chat-bubble-text {
        font-size: 9px !important;
    }
    .dd-wrapper .header-image-placeholder {
        width: 60px !important;
        height: 60px !important;
    }

    .dd-wrapper .header {
        gap: 1rem !important;
    }
}

@media (max-width: 768px) {
    .dd-wrapper .header h1 {
        font-size: 36px !important;
        letter-spacing: -2px !important;
    }

    .dd-wrapper .header-subtitle {
        font-size: 11px !important;
    }

    .dd-wrapper .vertical-line,
    .dd-wrapper .dot-accent {
        display: none !important;
    }

    .dd-wrapper .nav-tab {
        padding: 0.4rem 0.6rem !important;
        font-size: 11px !important;
    }

    .dd-wrapper .chat-bubble {
        width: 100px !important;
        padding: 0.4rem 0.5rem !important;
    }
    .dd-wrapper .chat-bubble-title {
        font-size: 9px !important;
    }
    .dd-wrapper .chat-bubble-text {
        font-size: 8px !important;
    }
    .dd-wrapper .header-image-placeholder {
        width: 50px !important;
        height: 50px !important;
    }
    .dd-wrapper .header-image-section {
        gap: 0.5rem !important;
    }

    .dd-wrapper .flow-graphic {
        width: 200px !important;
        height: 80px !important;
    }
}

@media (max-width: 600px) {
    .dd-wrapper .header h1 {
        font-size: 28px !important;
        letter-spacing: -1px !important;
    }

    .dd-wrapper .header-subtitle {
        font-size: 10px !important;
    }

    .dd-wrapper .chat-bubble {
        display: none !important;
    }

    .dd-wrapper .header-image-placeholder {
        width: 40px !important;
        height: 40px !important;
    }

    .dd-wrapper .flow-graphic {
        width: 150px !important;
        height: 60px !important;
    }

    .dd-wrapper .nav-tab {
        padding: 0.3rem 0.5rem !important;
        font-size: 10px !important;
    }
}

/* ============================================================================
   DEEP DIVES VIEWER COMPONENTS
   ============================================================================ */

/* Dropdown Dark Theme Override */
.dd-dropdown-dark .Select-control {
    background-color: #1e293b !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
    border-radius: 4px !important;
}

.dd-dropdown-dark .Select-control:hover {
    border-color: rgba(16, 185, 129, 0.5) !important;
}

.dd-dropdown-dark .Select-menu-outer {
    background-color: #1e293b !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
    z-index: 1000 !important;
}

/* Allow dropdowns to overflow Route Selection container */
.dd-wrapper .card {
    overflow: visible !important;
}

.dd-wrapper .card .card-content {
    overflow: visible !important;
}

/* Dash dropdown menu portal - ensure it appears on top */
.Select-menu-outer {
    z-index: 1000 !important;
}

.dd-dropdown-dark .Select-option {
    background-color: #1e293b !important;
    color: #e2e8f0 !important;
}

.dd-dropdown-dark .Select-option:hover {
    background-color: #2d3748 !important;
}

.dd-dropdown-dark .Select-option.is-focused {
    background-color: rgba(16, 185, 129, 0.2) !important;
}

.dd-dropdown-dark .Select-value-label {
    color: #e2e8f0 !important;
}

.dd-dropdown-dark .Select-placeholder {
    color: #64748b !important;
}

/* Grid Container */
.dd-viewer-grid-container {
    overflow: hidden !important;
}

/* Info Bar at bottom of grid map */
.dd-viewer-info-bar {
    height: 36px !important;
    background-color: #0f172a !important;
    border-top: 1px solid rgba(139, 92, 246, 0.3) !important;
    color: #94a3b8 !important;
    font-size: 0.8rem !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 1rem !important;
}

/* Wind Panel */
.dd-viewer-wind-panel {
    background: linear-gradient(135deg, #1e2530 0%, #151d30 100%) !important;
    border-radius: 0 !important;
    padding: 1rem !important;
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
}

/* Terrain Container */
.dd-viewer-terrain-container {
    overflow: hidden !important;
}

/* Satellite card needs overflow hidden for zoom clipping (overrides .card visible) */
.dd-wrapper .dd-satellite-card,
.dd-wrapper .dd-satellite-card .card-content {
    overflow: hidden !important;
}

/* Responsive adjustments for viewer components */
@media (max-width: 768px) {
    .dd-viewer-grid-container,
    .dd-viewer-terrain-container {
        min-width: 100% !important;
    }
}
