/* 인덱스 전용 모바일 최적화 CSS - 포트폴리오 모바일 기반 */

/* 통합 종목 정보 카드 스타일 */
#stock-info-card {
    position: relative;
}

#stock-info-card .card-content {
    padding: 0;
}

/* 모바일 전용 탭 스타일 */
@media (max-width: 768px) {
    .tab-navigation {
        display: flex !important;
        flex-direction: row !important;
        gap: 0 !important;
        margin-bottom: 12px;
        overflow-x: auto;
        padding-bottom: 8px;
        width: 100% !important;
    }

    .tab-btn {
        flex: 1 !important;
        min-width: 0 !important;
        width: auto !important;
        padding: 8px 4px !important;
        font-size: 12px !important;
        font-weight: 600;
        color: #6b7280;
        background: #f9fafb;
        border: 1px solid #e5e7eb;
        border-radius: 0;
        cursor: pointer;
        transition: all 0.2s ease;
        white-space: nowrap;
        flex-shrink: 0;
        height: auto !important;
        text-align: center;
        border-right: none;
    }

    .tab-btn:last-child {
        border-right: 1px solid #e5e7eb;
    }

    .tab-btn + .tab-btn {
        margin-left: -1px;
    }

    .tab-btn:hover {
        background: #f3f4f6;
        color: #374151;
    }

    .tab-btn.active {
        background: #3b82f6;
        color: white;
        border-color: #3b82f6;
        box-shadow: 0 1px 3px rgba(59, 130, 246, 0.3);
    }
}

/* 탭 콘텐츠 스타일 */
.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
}

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

.tab-panel .info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.tab-panel .info-row:last-child {
    border-bottom: none;
}

.tab-panel .info-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.tab-panel .info-value {
    font-size: 13px;
    color: #1f2937;
    font-weight: 600;
    text-align: right;
    flex: 1;
    margin-left: 10px;
    word-wrap: break-word;
}

/* 모바일 레이아웃 재정의 */
@media (max-width: 768px) {
    /* 모바일에서는 날짜 선택(캘린더) 완전 숨김 */
    #date-range-selector {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    /* 전체 레이아웃 최적화 - 강제 적용 */
    .layout-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 3px !important;
        padding: 0 10px !important;
    }
    
    /* 중앙 콘텐츠 - 검색/차트 영역이 제일 상단 */
    .center-content {
        order: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 3px !important;
    }
    
    /* 오른쪽 사이드바 - 시세 + 주문 */
    .right-sidebar {
        order: 2 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 3px !important;
    }
    
    /* 왼쪽 사이드바 - 관심종목 + 주가예측만 */
    .left-sidebar {
        order: 3 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 3px !important;
        margin-bottom: 0 !important;
    }
    
    /* 카드 최적화 */
    .info-card {
        margin-bottom: 3px !important;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .info-card:last-child {
        margin-bottom: 0 !important;
    }
    
    /* 검색 및 차트 영역 최적화 */
    .center-content .card {
        margin-bottom: 3px !important;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    /* 검색창 최적화 */
    .stock-search {
        flex-direction: column;
        gap: 8px;
    }
    
    .stock-search-input {
        width: 100%;
        font-size: 16px; /* iOS 줌 방지 */
    }
    
    .stock-search-btn {
        width: 100%;
        padding: 12px;
    }
    
    /* 관심목록 버튼 최적화 */
    .btn-watchlist {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
    
    /* TradingView 차트 최적화 */
    .chart-container {
        height: 300px !important;
        border-radius: 8px;
    }
    
    /* 검색창 모바일 스타일 (포트폴리오와 동일) */
    .stock-search {
        flex: 1 !important;
        min-width: 0 !important;
        display: flex !important;
        align-items: center !important;
        position: relative !important;
        background: #fff !important;
        border: 1px solid #dee2e6 !important;
        border-radius: 8px !important;
        height: 44px !important;
        box-sizing: border-box !important;
    }
    
    .stock-search-input {
        font-size: 16px !important; /* iOS 줌 방지 */
        padding: 12px 50px 12px 12px !important; /* 오른쪽에 돋보기 공간 확보 */
        flex: 1 !important;
        border: none !important; /* 테두리 제거 */
        background: transparent !important; /* 투명 배경 */
        height: 100% !important;
        box-sizing: border-box !important;
        outline: none !important; /* 포커스 아웃라인 제거 */
    }
    
    .stock-search-input:focus {
        outline: none !important; /* 포커스 아웃라인 제거 */
    }
    
    .stock-search:focus-within {
        border-color: #2d6cdf !important;
        box-shadow: 0 0 0 2px rgba(45, 108, 223, 0.1) !important;
    }
    
    .stock-search-btn {
        position: absolute !important; /* 절대 위치 */
        right: 8px !important; /* 검색 박스 오른쪽에서 8px */
        top: 50% !important; /* 세로 중앙 */
        transform: translateY(-50%) !important; /* 정확한 중앙 정렬 */
        width: 28px !important;
        height: 28px !important;
        background: none !important;
        border: none !important;
        color: #666 !important;
        transition: color 0.2s ease !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
    }
    
    .stock-search-btn:hover {
        color: #2d6cdf !important;
    }
    
    /* 하트 버튼 모바일 스타일 (포트폴리오와 동일) */
    .btn-watchlist {
        min-width: 44px !important;
        min-height: 44px !important;
        width: 44px !important;
        height: 44px !important;
        padding: 0 !important;
        white-space: nowrap !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        border-radius: 8px !important;
        background: #f8f9fa !important;
        border: 1px solid #dee2e6 !important;
        color: #666 !important;
        transition: all 0.2s ease !important;
    }
    
    .btn-watchlist span {
        display: none !important; /* 모바일에서는 텍스트 숨김 */
    }
    
    .btn-watchlist i {
        font-size: 16px !important;
        margin: 0 !important; /* 아이콘만 중앙 정렬 */
    }
    
    .btn-watchlist:hover,
    .btn-watchlist:active {
        background: #e9ecef !important;
        transform: scale(0.95) !important;
    }
    
    .btn-watchlist.active {
        background: #dc3545 !important;
        border-color: #dc3545 !important;
        color: #fff !important;
    }
    
    .btn-watchlist.active:hover,
    .btn-watchlist.active:active {
        background: #c82333 !important;
        border-color: #bd2130 !important;
    }
    
    /* 관심목록에 추가된 상태 */
    .btn-watchlist .fa-heart.fas {
        color: #dc3545 !important;
    }
    
    .btn-watchlist .fa-heart.far {
        color: #666 !important;
    }
    
    .btn-watchlist.active .fa-heart {
        color: #fff !important;
    }
    
    /* 시세 테이블 최적화 */
    .right-sidebar table {
        font-size: 12px;
    }
    
    .right-sidebar table th,
    .right-sidebar table td {
        padding: 4px 6px;
    }
    
    /* 주문 폼 최적화 */
    .right-sidebar .input {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .right-sidebar select {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    /* 주문 버튼 최적화 */
    .right-sidebar button {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    /* 모바일 주문 카드 수량 입력 최적화 */
    .right-sidebar .info-card .info-title {
        font-size: 16px !important;
        font-weight: 700 !important;
        margin-bottom: 12px !important;
    }
    
    /* 수량 라벨 크기 늘리기 */
    .right-sidebar .info-card div[style*="font-size:12px"][style*="color:#666"] {
        font-size: 14px !important;
        font-weight: 600 !important;
        color: #333 !important;
        margin-bottom: 8px !important;
    }
    
    /* 수량 입력 필드와 퍼센트 버튼 레이아웃 조정 */
    .right-sidebar .info-card div[style*="display:flex"][style*="gap:4px"] {
        gap: 6px !important;
    }
    
    /* 수량 입력 필드 크기 늘리기 */
    .right-sidebar .info-card #order-quantity-input {
        flex: 1.5 !important;
        min-width: 0 !important;
        padding: 12px !important;
        font-size: 16px !important;
    }
    
    /* 퍼센트 버튼들 크기 줄이기 */
    .right-sidebar .info-card button[onclick*="setQuantityPercent"] {
        padding: 8px 6px !important;
        font-size: 11px !important;
        min-width: 0 !important;
        flex: 0.8 !important;
        white-space: nowrap !important;
    }
    
    /* 관심종목 카드 최적화 */
    .watchlist-items {
        max-height: 300px;
        overflow-y: auto;
    }
    
    .watchlist-item {
        padding: 8px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .watchlist-item:last-child {
        border-bottom: none;
    }
    
    /* 주가 예측 카드 최적화 */
    #prediction-chart {
        height: 200px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }
    
    /* 주가 예측 차트 컨테이너 오버플로우 해결 */
    .info-card:has(#prediction-chart) {
        overflow: visible !important;
    }
    
    /* Plotly 차트 컨테이너 오버플로우 해결 */
    .plotly-graph-div {
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
    }
    
    /* 카드 접기/펼치기 화살표 - 모바일에서 추가 스타일 (공통 규칙 사용) */
    
    /* 접힌 카드 스타일 */
    .info-card.collapsed {
        max-height: 60px;
        overflow: hidden;
    }
    
    /* 종목차트 접힌 상태에서 차트 컨테이너 숨김 */
    .chart-section.collapsed .chart-container {
        display: none !important;
    }
    
    /* 종목차트 제목 클릭 가능 스타일 */
    .chart-section .info-title {
        cursor: pointer;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }
    
    .chart-section .info-title:hover {
        color: #2d6cdf;
    }
    
    /* 페이지네이션 최적화 */
    .watchlist-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 10px;
    }
    
    .pagination-btn {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 4px;
    }
    
    /* 상태 메시지 최적화 */
    #orderbook-status {
        font-size: 11px;
        padding: 6px;
        text-align: center;
    }
    
    /* 모바일 전용 터치 영역 */
    .mobile-touch-target {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* 스크롤 최적화 */
    .overflow-container {
        -webkit-overflow-scrolling: touch;
    }
    
    /* 폰트 크기 최적화 */
    .info-title {
        font-size: 16px;
        font-weight: 600;
    }
    
    /* stock_info.css 오버라이드 - 포트폴리오와 동일한 구체적 선택자 */
    .right-sidebar .info-card .info-title {
        font-size: 16px !important;
        font-weight: 700 !important;
        margin-bottom: 15px !important;  /* stock_info.css의 15px 오버라이드 */
        padding-bottom: 20px !important;    /* stock_info.css의 8px 오버라이드 */

    }
    
    /* 모든 .info-card .info-title에 적용 */
    .info-card .info-title {
        margin-bottom: 15px !important;  /* stock_info.css의 15px 오버라이드 */
        padding-bottom: 20px !important;    /* stock_info.css의 8px 오버라이드 */

    }
    
    /* 기술적 분석 제목도 모바일에서 강제로 마진/패딩 늘리기 */
    .analysis-title,
    .analysis-card .analysis-title,
    .left-sidebar .analysis-title {
        font-size: 16px !important;
        font-weight: 700 !important;
        margin-bottom: 15px !important;
        padding-bottom: 20px !important;
    }
    
    .section-title {
        font-size: 16px;
        font-weight: 700;
    }
    
    /* 분석 그리드 스타일 - 모바일용 */
    .analysis-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    /* 모바일에서 기존 제목 숨김 */
    .split-title {
        display: none !important;
    }
    
    .section-title-left {
        display: none !important;
    }
    
    .section-title-right {
        display: none !important;
    }
    
    /* 모바일용 새로운 제목 스타일 */
    .mobile-section-title {
        font-size: 14px;
        font-weight: 600;
        color: #2c3e50;
        margin: 0 0 8px 0;
        padding: 0;
        text-align: left;
        border-bottom: 2px solid #3498db;
        padding-bottom: 4px;
        width: fit-content;
    }
    
    .analysis-item:nth-child(2) .mobile-section-title {
        border-bottom: 2px solid #e74c3c;
    }
    
    /* 모바일에서 모바일용 제목 표시 */
    .mobile-section-title {
        display: block !important;
    }
    
    /* 모바일에서 AI 종합 평가 점수 동그라미 정사각형 유지 */
    .score-circle {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        min-height: 60px !important;
        max-width: 60px !important;
        max-height: 60px !important;
        border-radius: 50% !important;
        flex-shrink: 0 !important;
    }
    
    /* 모바일에서 종목 분석 카드 토글 스타일 */
    .analysis-card .analysis-title {
        cursor: pointer;
        user-select: none;
        position: relative;
    }
    
    .analysis-card .card-arrow {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 16px;
        color: #666;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    
    .analysis-card.collapsed .analysis-content {
        display: none;
    }
    
    .analysis-card.collapsed {
        max-height: 60px;
        overflow: hidden;
    }
    
    .analysis-grid .analysis-item {
        display: flex;
        flex-direction: column;
        gap: 8px;
        border: 1px solid #e9ecef;
        border-radius: 6px;
        padding: 8px;
        margin: 0;
    }
    
    /* 모바일에서 차트 영역 꽉 차게 */
    .news-analysis {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 160px;
        background: #ffffff;
        border-radius: 4px;
        padding: 4px;
        width: 100%;
        height: 100%;
    }
    
    .financial-analysis {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 160px;
        background: #ffffff;
        border-radius: 4px;
        padding: 4px;
        width: 100%;
        height: 100%;
    }
    
    .financial-analysis .placeholder {
        color: #666;
        font-size: 14px;
        text-align: center;
    }
    
    /* 모바일 차트 크기 - 파이차트 조금 더 크게 */
    #sentiment-pie-chart {
        max-width: 100%;
        height: 180px;
        width: 100%;
        display: block;
        margin: 0;
    }
    
    #financial-radar-chart {
        max-width: 100%;
        height: 150px;
        width: 100%;
        display: block;
        margin: 0;
    }
    
    
    /* 버튼 최적화 */
    .btn {
        min-height: 44px;
        padding: 12px 16px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    /* 입력 필드 최적화 */
    input, select, textarea {
        font-size: 16px;
        padding: 12px;
        border-radius: 8px;
    }
    
    /* 테이블 최적화 */
    table {
        font-size: 12px;
        border-collapse: collapse;
    }
    
    th, td {
        padding: 6px 8px;
        text-align: left;
    }
    
    /* 모바일 전용 숨김 요소 */
    .mobile-hidden {
        display: none !important;
    }
    
    /* 모바일 전용 표시 요소 */
    .mobile-only {
        display: block !important;
    }
    
    /* 모바일에서 회원탈퇴 모달 기본 숨김 */
    #deleteAccountModal {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* 모바일에서 회원탈퇴 모달 표시 시 중앙 정렬 */
    #deleteAccountModal.show {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 20px !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important; /* 동적 뷰포트 높이 */
        min-height: 100vh !important;
        z-index: 10000 !important;
        box-sizing: border-box !important;
        overflow-y: auto !important;
    }
    
    #deleteAccountModal .auth-modal-wrap {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        padding: 20px !important;
        box-sizing: border-box !important;
    }
    
    #deleteAccountModal .auth-modal {
        width: 100% !important;
        max-width: 90vw !important;
        margin: 0 !important;
        position: relative !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        max-height: 80vh !important;
        overflow-y: auto !important;
    }
    
    /* 모바일에서 키보드 올라올 때 중앙 정렬 유지 */
    @supports (height: 100dvh) {
        #deleteAccountModal.show {
            height: 100dvh !important;
        }
    }
    
    /* iOS Safari 키보드 대응 */
    @media screen and (max-width: 768px) {
        #deleteAccountModal.show {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
            width: 100% !important;
            height: 100% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
        }
    }
    
    /* 데스크톱 전용 숨김 */
    .desktop-only {
        display: none !important;
    }
    
    /* 헤더 컨테이너 높이 보장 */
    .hd-con {
        position: relative !important;
        min-height: 60px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    /* 모바일 햄버거 메뉴 위치 수정 */
    .mobile-menu-btn {
        position: absolute !important;
        top: 50% !important;
        right: 20px !important;
        transform: translateY(-50%) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px !important;
        height: 44px !important;
        background: #f8f9fa !important;
        border: 1px solid #dee2e6 !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
        z-index: 10 !important;
    }
    
    /* 햄버거 메뉴 점 세개 중앙 정렬 */
    .menu-dots {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 3px !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .dot {
        width: 4px !important;
        height: 4px !important;
        background: #333 !important;
        border-radius: 50% !important;
        display: block !important;
    }
    
    .mobile-menu-btn:hover,
    .mobile-menu-btn:active {
        background: #e9ecef !important;
        transform: translateY(-50%) scale(0.95) !important;
    }
    
    /* 로그인 버튼 위치 수정 */
    #mobileLoginBtn {
        position: absolute !important;
        top: 50% !important;
        right: 20px !important; /* 햄버거 버튼과 독립적으로 오른쪽 끝에 배치 */
        transform: translateY(-50%) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;
        height: 44px !important;
        padding: 0 12px !important;
        background: #1e5eff !important;
        color: #fff !important;
        border: none !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        z-index: 10 !important;
    }
    
    #mobileLoginBtn:hover,
    #mobileLoginBtn:active {
        background: #1a4fd9 !important;
        transform: translateY(-50%) scale(0.95) !important;
    }
    
    /* 모바일 드로어 메뉴 */
    .mobile-drawer {
        position: fixed !important;
        top: 0 !important;
        right: -300px !important;
        width: 300px !important;
        height: 100vh !important;
        background: #fff !important;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1) !important;
        z-index: 1001 !important;
        transition: right 0.3s ease !important;
    }
    
    .mobile-drawer.open,
    .mobile-drawer.active {
        right: 0 !important;
    }
    
    .mobile-drawer-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px 20px !important;
        border-bottom: 1px solid #eee !important;
        height: 75px !important;
        min-height: 75px !important;
        max-height: 75px !important;
    }
    
    #drawerUserNameTop {
        flex: 1 !important;
        text-align: left !important;
        font-weight: 700 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        font-size: 16px !important;
        color: #333 !important;
    }
    
    .mobile-drawer-close {
        background: none !important;
        border: none !important;
        font-size: 20px !important;
        cursor: pointer !important;
        color: #333 !important;
        padding: 8px !important;
        min-width: 32px !important;
        min-height: 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .mobile-drawer-content {
        padding: 20px !important;
    }
    
    .mobile-menu-list ul {
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .mobile-menu-list li {
        margin-bottom: 10px !important;
    }
    
    .mobile-menu-list li:last-child {
        margin-bottom: 0 !important;
    }
    
    .drawer-link {
        display: block !important;
        padding: 10px 0 !important;
        color: #333 !important;
        text-decoration: none !important;
        font-size: 16px !important;
        transition: color 0.2s ease !important;
    }
    
    .drawer-link:hover {
        color: #2d6cdf !important;
    }
    
    /* 로그아웃 링크 스타일 */
    #drawer-logout {
        color: #2d6cdf !important;
    }
    
    #drawer-logout:hover {
        color: #1a4fd9 !important;
    }
    
    /* 회원탈퇴 링크 스타일 */
    #drawer-delete-account {
        color: #dc3545 !important;
    }
    
    #drawer-delete-account:hover {
        color: #c82333 !important;
    }
    
    .mobile-drawer-backdrop {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0,0,0,0.5) !important;
        z-index: 1000 !important;
        display: none !important;
    }
    
    .mobile-drawer-backdrop.show {
        display: block !important;
    }
    
    /* 모바일에서 데스크톱 메뉴 숨김 */
    .simple-menu {
        display: none !important;
    }
    
    /* 모바일에서 햄버거 메뉴 표시 */
    #mobileMenuBtn {
        display: flex !important;
    }
    
    /* 로그인 상태에 따른 버튼 표시/숨김 */
    body.auth #mobileMenuBtn {
        display: flex !important;
    }
    
    body.auth #mobileLoginBtn {
        display: none !important;
    }
    
    body:not(.auth) #mobileMenuBtn {
        display: none !important;
    }
    
    body:not(.auth) #mobileLoginBtn {
        display: flex !important;
    }
}

/* PC에서는 햄버거 메뉴 숨김 */
@media (min-width: 769px) {
    #mobileMenuBtn {
        display: none !important;
    }
    
    #mobileLoginBtn {
        display: none !important;
    }
    
    .mobile-drawer {
        display: none !important;
    }
    
    .mobile-drawer-backdrop {
        display: none !important;
    }
}
