/* ============================================================
   MTF 3D Profile - Dark Dashboard Theme
   All selectors scoped to #mtf-3d-dashboard for Avada isolation
   ============================================================ */

/* -- Root isolation -- */
#mtf-3d-dashboard {
    background: #050505 !important;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    position: relative;
    padding: 48px 32px !important;
    margin: -40px -40px !important;
    min-height: auto;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Grid pattern background */
#mtf-3d-dashboard::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    pointer-events: none;
    z-index: 0;
}

/* Radial glow effects */
#mtf-3d-dashboard::after {
    content: '';
    position: absolute;
    top: -200px;
    left: 10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,90,31,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* All direct children above the pseudo-elements */
#mtf-3d-dashboard > * {
    position: relative;
    z-index: 1;
}

/* -- Avada overrides -- */
#mtf-3d-dashboard,
#mtf-3d-dashboard *:not(svg):not(path):not(canvas):not(i) {
    font-family: 'Inter', sans-serif !important;
    box-sizing: border-box;
}
#mtf-3d-dashboard .mtf-card,
#mtf-3d-dashboard .mtf-card__title {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #ffffff !important;
}
#mtf-3d-dashboard .mtf-header {
    display: none !important;
}
#mtf-3d-dashboard a {
    color: #ff5a1f !important;
    text-decoration: none !important;
}

/* -- Glass panel -- */
#mtf-3d-dashboard .p3d-glass {
    background: linear-gradient(145deg, rgba(26,26,26,0.8) 0%, rgba(17,17,17,0.9) 100%) !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
}

/* -- Typography -- */
#mtf-3d-dashboard h1,
#mtf-3d-dashboard h2,
#mtf-3d-dashboard h3,
#mtf-3d-dashboard h4 {
    color: #ffffff !important;
    font-weight: 700 !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em;
}
#mtf-3d-dashboard .p3d-muted {
    color: #888888 !important;
    font-size: 15px;
    line-height: 1.6;
}
#mtf-3d-dashboard .p3d-text-gradient {
    background: linear-gradient(90deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* -- Buttons -- */
#mtf-3d-dashboard .p3d-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #ff5a1f !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border: none !important;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-decoration: none !important;
    line-height: 1.4;
}
#mtf-3d-dashboard .p3d-btn-primary:hover {
    background: #e04a15 !important;
    transform: translateY(-1px);
}
#mtf-3d-dashboard .p3d-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}
#mtf-3d-dashboard .p3d-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: transparent !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none !important;
    line-height: 1.4;
}
#mtf-3d-dashboard .p3d-btn-secondary:hover {
    background: rgba(255,255,255,0.05) !important;
}
#mtf-3d-dashboard .p3d-btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 24px;
    padding: 14px;
    background: transparent !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
}
#mtf-3d-dashboard .p3d-btn-full:hover {
    background: rgba(255,255,255,0.05) !important;
}

/* -- Badge -- */
#mtf-3d-dashboard .p3d-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,90,31,0.3);
    background: rgba(255,90,31,0.1);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ff5a1f !important;
    margin-bottom: 24px;
}
#mtf-3d-dashboard .p3d-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5a1f;
    animation: p3d-pulse 2s ease-in-out infinite;
}
@keyframes p3d-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
#mtf-3d-dashboard .p3d-badge-waiting {
    border-color: rgba(136,136,136,0.3);
    background: rgba(136,136,136,0.1);
    color: #888888 !important;
}
#mtf-3d-dashboard .p3d-badge-waiting .p3d-badge-dot {
    background: #888888;
}

/* -- Hero section -- */
#mtf-3d-dashboard .p3d-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
    align-items: center;
}
#mtf-3d-dashboard .p3d-hero-left .p3d-title {
    font-size: clamp(36px, 5vw, 56px) !important;
    font-weight: 800 !important;
    line-height: 1.05 !important;
    margin-bottom: 16px !important;
    letter-spacing: -0.03em;
}
#mtf-3d-dashboard .p3d-hero-left .p3d-muted {
    max-width: 400px;
    margin-bottom: 32px;
}
#mtf-3d-dashboard .p3d-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
#mtf-3d-dashboard .p3d-hero-right {
    height: 100%;
    min-height: 400px;
}
#mtf-3d-dashboard .p3d-viewer-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 !important;
}
#mtf-3d-dashboard .p3d-viewer-card canvas {
    border-radius: 16px;
}
#mtf-3d-dashboard .p3d-viewer-meta {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 5;
}
#mtf-3d-dashboard .p3d-viewer-meta .p3d-muted {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
#mtf-3d-dashboard .p3d-viewer-meta strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
    margin-top: 4px;
}

/* Scan line animation on viewer */
#mtf-3d-dashboard .p3d-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255,90,31,0.6);
    box-shadow: 0 0 15px rgba(255,90,31,0.5);
    animation: p3d-scanline 3s ease-in-out infinite;
    z-index: 4;
}
@keyframes p3d-scanline {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* 3D viewer container */
#mtf-3d-dashboard #mtf-3d-viewer {
    width: 100%;
    min-height: 400px;
    background: #0a0a0a;
    border-radius: 16px;
}

/* Placeholder icon when no 3D model */
#mtf-3d-dashboard .p3d-viewer-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
    gap: 16px;
}
#mtf-3d-dashboard .p3d-viewer-placeholder-icon {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
}
#mtf-3d-dashboard .p3d-viewer-placeholder-icon i {
    font-size: 28px;
    color: rgba(255,255,255,0.5);
}

/* Hero simple (registration state) */
#mtf-3d-dashboard .p3d-hero-simple {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 32px;
}
#mtf-3d-dashboard .p3d-hero-simple h2 {
    font-size: 32px !important;
    margin-bottom: 12px !important;
}

/* -- Stats grid -- */
#mtf-3d-dashboard .p3d-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
#mtf-3d-dashboard .p3d-stat-card {
    padding: 24px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
#mtf-3d-dashboard .p3d-stat-card-wide {
    grid-column: span 2;
}
#mtf-3d-dashboard .p3d-stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888888 !important;
}
#mtf-3d-dashboard .p3d-stat-value {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff !important;
}
#mtf-3d-dashboard .p3d-stat-sub {
    font-size: 13px;
    color: #888888 !important;
    margin-top: 4px;
}
#mtf-3d-dashboard .p3d-stat-icon {
    color: rgba(255,90,31,0.8);
    font-size: 16px;
}
#mtf-3d-dashboard .p3d-stat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
#mtf-3d-dashboard .p3d-stat-card:first-child::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255,90,31,0.12);
    border-radius: 50%;
    filter: blur(30px);
    pointer-events: none;
}
#mtf-3d-dashboard .p3d-stat-sizes {
    display: flex;
    gap: 32px;
    align-items: flex-end;
}
#mtf-3d-dashboard .p3d-stat-divider {
    width: 1px;
    height: 40px;
    background: #2a2a2a;
}
#mtf-3d-dashboard .p3d-stat-size-label {
    font-size: 13px;
    color: #888888 !important;
    margin-bottom: 4px;
}
#mtf-3d-dashboard .p3d-stat-size-value {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff !important;
}
#mtf-3d-dashboard .p3d-stat-size-eu {
    font-size: 13px;
    font-weight: 400;
    color: #888888 !important;
    margin-left: 6px;
}
#mtf-3d-dashboard .p3d-change-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}
#mtf-3d-dashboard .p3d-change-green {
    color: #4ade80 !important;
    background: rgba(74,222,128,0.1);
}
#mtf-3d-dashboard .p3d-change-red {
    color: #ff5a1f !important;
    background: rgba(255,90,31,0.1);
}
#mtf-3d-dashboard .p3d-change-neutral {
    color: #888888 !important;
    background: rgba(136,136,136,0.1);
}

/* -- Content grid (measurements + sidebar) -- */
#mtf-3d-dashboard .p3d-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}
#mtf-3d-dashboard .p3d-main-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
#mtf-3d-dashboard .p3d-side-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* -- Measurement comparison table -- */
#mtf-3d-dashboard .p3d-measurements-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}
#mtf-3d-dashboard .p3d-measurements-header h3 {
    font-size: 20px !important;
}
#mtf-3d-dashboard .p3d-measurements-header .p3d-muted {
    font-size: 13px;
    margin-top: 4px;
}
#mtf-3d-dashboard .p3d-measurement-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: background 0.2s, border-color 0.2s;
    margin-bottom: 4px;
}
#mtf-3d-dashboard .p3d-measurement-row:hover {
    background: rgba(255,255,255,0.03);
    border-color: rgba(42,42,42,0.5);
}
#mtf-3d-dashboard .p3d-m-left {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 35%;
}
#mtf-3d-dashboard .p3d-m-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s;
}
#mtf-3d-dashboard .p3d-measurement-row:hover .p3d-m-icon {
    border-color: rgba(255,90,31,0.5);
}
#mtf-3d-dashboard .p3d-m-icon i {
    font-size: 11px;
    color: #888888;
    transition: color 0.2s;
}
#mtf-3d-dashboard .p3d-measurement-row:hover .p3d-m-icon i {
    color: #ff5a1f;
}
#mtf-3d-dashboard .p3d-m-name {
    font-weight: 500;
    font-size: 15px;
    color: #ffffff !important;
}
#mtf-3d-dashboard .p3d-m-values {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 35%;
}
#mtf-3d-dashboard .p3d-m-current {
    font-weight: 700;
    font-size: 17px;
    color: #ffffff !important;
}
#mtf-3d-dashboard .p3d-m-right {
    width: 25%;
    display: flex;
    justify-content: flex-end;
}

/* Expanded measurements list (toggled) */
#mtf-3d-dashboard .p3d-measurements-expanded {
    display: none;
}
#mtf-3d-dashboard .p3d-measurements-expanded.p3d-show {
    display: block;
}

/* -- QR section -- */
#mtf-3d-dashboard .p3d-qr-card {
    text-align: center;
}
#mtf-3d-dashboard .p3d-qr-card h3 {
    font-size: 18px !important;
    margin-bottom: 8px !important;
}
#mtf-3d-dashboard .p3d-qr-wrap {
    background: #ffffff;
    padding: 16px;
    border-radius: 12px;
    display: inline-block;
    margin: 20px 0;
}
#mtf-3d-dashboard .p3d-qr-wrap canvas,
#mtf-3d-dashboard .p3d-qr-wrap img {
    display: block;
    border-radius: 4px;
}
#mtf-3d-dashboard .p3d-qr-id {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}
#mtf-3d-dashboard .p3d-qr-id span {
    font-family: monospace !important;
    font-size: 12px;
    color: #888888 !important;
}
#mtf-3d-dashboard .p3d-qr-id button {
    background: none !important;
    border: none !important;
    color: #ff5a1f !important;
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
    transition: color 0.2s;
}
#mtf-3d-dashboard .p3d-qr-id button:hover {
    color: #ffffff !important;
}

/* -- Booking CTA -- */
#mtf-3d-dashboard .p3d-cta-card {
    position: relative;
    overflow: hidden;
    background: #111111 !important;
    border: 1px solid #2a2a2a !important;
    backdrop-filter: none;
}
#mtf-3d-dashboard .p3d-cta-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,90,31,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
#mtf-3d-dashboard .p3d-cta-card:hover::after {
    opacity: 1;
}
#mtf-3d-dashboard .p3d-cta-card > * {
    position: relative;
    z-index: 1;
}
#mtf-3d-dashboard .p3d-cta-card i {
    font-size: 24px;
    color: #ff5a1f;
    margin-bottom: 16px;
    display: block;
}
#mtf-3d-dashboard .p3d-cta-card h3 {
    font-size: 18px !important;
}
#mtf-3d-dashboard .p3d-cta-card .p3d-btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    background: #ffffff !important;
    color: #0a0a0a !important;
    font-weight: 700 !important;
}
#mtf-3d-dashboard .p3d-cta-card .p3d-btn-primary:hover {
    background: #e5e5e5 !important;
}

/* -- Registration form (dark) -- */
#mtf-3d-dashboard .p3d-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}
#mtf-3d-dashboard .p3d-field--full {
    grid-column: 1 / -1;
}
#mtf-3d-dashboard .p3d-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888888 !important;
    margin-bottom: 8px;
}
#mtf-3d-dashboard .p3d-field label .required {
    color: #ff5a1f !important;
}
#mtf-3d-dashboard .p3d-field input,
#mtf-3d-dashboard .p3d-field select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 10px;
    color: #ffffff !important;
    font-size: 15px !important;
    font-family: 'Inter', sans-serif !important;
    transition: border-color 0.2s;
    outline: none;
}
#mtf-3d-dashboard .p3d-field input::placeholder {
    color: #555555 !important;
}
#mtf-3d-dashboard .p3d-field input:focus,
#mtf-3d-dashboard .p3d-field select:focus {
    border-color: #ff5a1f !important;
    box-shadow: 0 0 0 3px rgba(255,90,31,0.1);
}
#mtf-3d-dashboard .p3d-field select option {
    background: #1a1a1a;
    color: #ffffff;
}
#mtf-3d-dashboard .p3d-field-hint {
    display: block;
    font-size: 12px;
    color: #666666 !important;
    margin-top: 6px;
}

/* -- Error and loading -- */
#mtf-3d-dashboard .p3d-error {
    background: rgba(220,38,38,0.1) !important;
    color: #ef4444 !important;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    border: 1px solid rgba(220,38,38,0.2) !important;
}
#mtf-3d-dashboard .p3d-loading {
    padding: 40px;
    text-align: center;
    color: #888888 !important;
    font-size: 14px;
}

/* -- Check existing profile card -- */
#mtf-3d-dashboard .p3d-check-card {
    text-align: center;
    margin-top: 16px;
}
#mtf-3d-dashboard .p3d-check-card p {
    color: #888888 !important;
    margin-bottom: 16px;
    font-size: 14px;
}

/* -- Responsive -- */
@media (max-width: 1024px) {
    #mtf-3d-dashboard .p3d-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    #mtf-3d-dashboard .p3d-stat-card-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    #mtf-3d-dashboard {
        padding: 24px 16px !important;
        margin: -15px -20px !important;
    }
    #mtf-3d-dashboard .p3d-hero {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    #mtf-3d-dashboard .p3d-hero-right {
        min-height: 300px;
    }
    #mtf-3d-dashboard .p3d-hero-left .p3d-title {
        font-size: 32px !important;
    }
    #mtf-3d-dashboard .p3d-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    #mtf-3d-dashboard .p3d-content-grid {
        grid-template-columns: 1fr;
    }
    #mtf-3d-dashboard .p3d-measurement-row {
        padding: 12px 8px;
    }
    #mtf-3d-dashboard .p3d-m-left {
        width: 40%;
    }
    #mtf-3d-dashboard .p3d-m-values {
        width: 30%;
    }
    #mtf-3d-dashboard .p3d-m-right {
        width: 25%;
    }
    #mtf-3d-dashboard .p3d-glass {
        padding: 20px;
    }
    #mtf-3d-dashboard .p3d-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    #mtf-3d-dashboard .p3d-stats-grid {
        grid-template-columns: 1fr;
    }
    #mtf-3d-dashboard .p3d-stat-card-wide {
        grid-column: span 1;
    }
    #mtf-3d-dashboard .p3d-hero-buttons {
        flex-direction: column;
    }
    #mtf-3d-dashboard .p3d-hero-buttons .p3d-btn-primary,
    #mtf-3d-dashboard .p3d-hero-buttons .p3d-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    #mtf-3d-dashboard .p3d-stat-sizes {
        flex-direction: column;
        gap: 12px;
    }
    #mtf-3d-dashboard .p3d-stat-divider {
        display: none;
    }
    #mtf-3d-dashboard .p3d-m-icon {
        display: none;
    }
    #mtf-3d-dashboard .p3d-measurement-row {
        flex-wrap: wrap;
        gap: 8px;
    }
    #mtf-3d-dashboard .p3d-m-left,
    #mtf-3d-dashboard .p3d-m-values,
    #mtf-3d-dashboard .p3d-m-right {
        width: auto;
    }
}
body:has(#mtf-3d-dashboard) .mtf-account-layout__content {
    background: #050505 !important;
}

/* -- Sidebar glassmorphism (only when 3D dashboard is on page) -- */
body:has(#mtf-3d-dashboard) .mtf-sidebar {
    background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(17,17,17,0.9) 100%) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255,255,255,0.05);
}
body:has(#mtf-3d-dashboard) .mtf-account-layout__sidebar {
    background: #050505 !important;
}
body:has(#mtf-3d-dashboard) .mtf-sidebar__link {
    color: #888888 !important;
    transition: all 0.2s ease;
    border-radius: 0;
    margin: 0 12px;
    padding: 14px 16px !important;
    border-radius: 10px;
}
body:has(#mtf-3d-dashboard) .mtf-sidebar__link:hover {
    color: #ffffff !important;
    background: rgba(255,255,255,0.05) !important;
}
body:has(#mtf-3d-dashboard) .mtf-sidebar__item.is-active .mtf-sidebar__link {
    background: rgba(255,90,31,0.12) !important;
    color: #ff5a1f !important;
    font-weight: 600;
    border-left: none;
}
body:has(#mtf-3d-dashboard) .mtf-sidebar__item.is-active .mtf-sidebar__icon {
    color: #ff5a1f !important;
}
body:has(#mtf-3d-dashboard) .mtf-sidebar__icon {
    color: #666666 !important;
    transition: color 0.2s;
}
body:has(#mtf-3d-dashboard) .mtf-sidebar__link:hover .mtf-sidebar__icon {
    color: #ffffff !important;
}
body:has(#mtf-3d-dashboard) .mtf-sidebar__text {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    letter-spacing: 0.01em;
}
body:has(#mtf-3d-dashboard) .mtf-sidebar__logout .mtf-sidebar__link {
    border-top-color: rgba(255,255,255,0.06) !important;
}
body:has(#mtf-3d-dashboard) .mtf-sidebar__logout .mtf-sidebar__link:hover {
    color: #ef4444 !important;
}
