/* theme.css — 이노테크 하드웨어 관리 공통 라이트/파스텔 테마
   privacy-destruction/theme.css의 톤을 참고해 독립적으로 구성. */

:root {
    --bg-page: #F7F9FC;
    --bg-card: #FFFFFF;
    --bg-card-soft: #FDFEFE;
    --text-primary: #2F3A45;
    --text-secondary: #6B7280;
    --pastel-blue: #8BB8E8;
    --pastel-mint: #9ADBCF;
    --pastel-peach: #F4B7A3;
    --pastel-lavender: #C8B6E2;
    --pastel-gold: #F0C98A;
    --border-color: #E7EBF1;
}

body {
    font-family: 'Inter', 'Outfit', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-primary);
}

.login-gradient-bg {
    background: linear-gradient(135deg, #EAF2FB 0%, #F6F1FB 100%);
}

.glass-panel,
.glass-header,
.glass-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
}
.glass-header { border-width: 0 0 1px 0; }

.kpi-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: transform .2s, box-shadow .2s;
}
.kpi-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 184, 232, 0.25);
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #EEF1F6; }
::-webkit-scrollbar-thumb { background: #C7D2E0; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #AAB8CC; }

.filter-input {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}
.filter-input:focus {
    outline: none;
    border-color: var(--pastel-blue);
    box-shadow: 0 0 0 2px rgba(139, 184, 232, 0.35);
}

/* 흰 카드 위의 제목/본문/테이블/모달 글자 전용 — Tailwind의 slate 스케일이
   이 프로젝트에서 반전 재정의되어 있어 text-slate-700/800/900을 직접 쓰면 안 되므로
   고정 HEX 값을 쓰는 전용 클래스를 사용한다. */
.innotech-text-primary {
    color: #1F2937 !important;
}
.innotech-text-secondary {
    color: #4B5563 !important;
}
.innotech-text-muted {
    color: #6B7280 !important;
}

/* 목록 테이블 */
.innotech-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
}
.innotech-table thead th {
    position: sticky;
    top: 0;
    background: #F3F6FA;
    z-index: 1;
}
.innotech-table tbody tr:hover {
    background: rgba(139, 184, 232, 0.08);
    cursor: pointer;
}
.innotech-truncate {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.badge-duplicate {
    display: inline-block;
    background: rgba(244, 183, 163, 0.24);
    color: #AC6650;
    border: 1px solid rgba(227, 154, 130, 0.5);
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 9999px;
    white-space: nowrap;
}
.badge-warning {
    display: inline-block;
    background: rgba(240, 201, 138, 0.24);
    color: #9B763F;
    border: 1px solid rgba(221, 176, 104, 0.5);
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 9999px;
    white-space: nowrap;
}

/* 사이트 전체 공통 좌측 메뉴 (조직 필터 패널과는 별도 역할) */
.innotech-admin-nav {
    background: var(--bg-card);
    border-right: 1px solid var(--border-color);
}

/* 조직(소속) 좌측 사이드바 */
.innotech-org-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
}
.innotech-org-list {
    max-height: 60vh;
    overflow-y: auto;
}
.innotech-org-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    color: #1F2937;
    text-decoration: none;
    transition: background-color .15s;
}
.innotech-org-item:hover {
    background: rgba(139, 184, 232, 0.10);
}
.innotech-org-item.active {
    background: rgba(139, 184, 232, 0.20);
    color: #37587C;
    font-weight: 700;
}
.innotech-org-count {
    font-size: 0.7rem;
    font-weight: 700;
    color: #6B7280;
    background: #F0F3F7;
    border-radius: 9999px;
    padding: 1px 8px;
    flex-shrink: 0;
}
.innotech-org-item.active .innotech-org-count {
    color: #37587C;
    background: rgba(139, 184, 232, 0.30);
}

/* 조직 트리 행(목록 사이드바) — 펼치기 버튼과 조직명 링크를 분리된 클릭 영역으로 구성 */
.innotech-org-tree-row {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    transition: background-color .15s;
}
.innotech-org-tree-row:hover {
    background: rgba(139, 184, 232, 0.10);
}
.innotech-org-tree-row.active {
    background: rgba(139, 184, 232, 0.20);
}
.innotech-org-tree-toggle,
.innotech-org-tree-toggle-spacer {
    flex-shrink: 0;
    width: 1rem;
    text-align: center;
}
.innotech-org-tree-toggle {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.65rem;
    line-height: 1;
    color: #9AA5B1;
    cursor: pointer;
}
.innotech-org-tree-toggle:hover {
    color: #37587C;
}
.innotech-org-tree-link {
    flex: 1;
    min-width: 0;
    font-size: 0.8rem;
    color: #1F2937;
    text-decoration: none;
}
.innotech-org-tree-row.active .innotech-org-tree-link {
    color: #37587C;
    font-weight: 700;
}

/* 읽기 전용 안내 박스 (예: 신규 등록 폼의 계산된 사용 만료일) — 일반 입력창과 구분되도록
   실선 대신 점선 테두리와 옅은 배경을 쓴다. */
.innotech-readonly-box {
    background: #F3F6FA;
    border: 1px dashed var(--border-color);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5rem;
    color: #4B5563;
    min-height: 2.375rem;
    display: flex;
    align-items: center;
}

/* 상세 모달 */
.innotech-modal-backdrop {
    background: rgba(15, 23, 42, 0.45);
}
.innotech-modal-panel {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
}

/* 상세 정보 카드(장비 상세 모달) — Tailwind slate 반전 이슈를 피하기 위해 고정 HEX만 사용 */
.innotech-modal-close {
    color: #6B7280;
    background: none;
    border: none;
    cursor: pointer;
}
.innotech-modal-close:hover {
    color: #1F2937;
}
.innotech-detail-section {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
}
.innotech-detail-section-title {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #1F2937;
    border-bottom: 1px solid #E5E7EB;
    background: #F9FAFB;
}
.innotech-detail-table {
    width: 100%;
    border-collapse: collapse;
}
.innotech-detail-table th {
    width: 120px;
    padding: 10px 16px;
    text-align: left;
    vertical-align: top;
    background: #F8FAFC;
    color: #6B7280;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    border-bottom: 1px solid #E5E7EB;
}
.innotech-detail-table td {
    padding: 10px 16px;
    color: #1F2937;
    font-size: 13px;
    border-bottom: 1px solid #E5E7EB;
    word-break: break-word;
}
.innotech-detail-table tr:last-child th,
.innotech-detail-table tr:last-child td {
    border-bottom: none;
}
.innotech-status-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 9999px;
    white-space: nowrap;
    border: 1px solid transparent;
}
.innotech-status-badge--active {
    background: rgba(154, 219, 207, 0.24);
    color: #3D6F64;
    border-color: rgba(123, 196, 182, 0.5);
}
.innotech-status-badge--pending {
    background: rgba(240, 201, 138, 0.24);
    color: #9B763F;
    border-color: rgba(221, 176, 104, 0.5);
}
.innotech-status-badge--returned,
.innotech-status-badge--neutral {
    background: #F1F5F9;
    color: #475569;
    border-color: #E2E8F0;
}
.innotech-status-badge--disposed {
    background: rgba(244, 183, 163, 0.24);
    color: #AC6650;
    border-color: rgba(227, 154, 130, 0.5);
}
/* LOA(휴직) 사용연한 "동결" 배지 — 파란/보라 계열, 다른 상태 배지와 구분되도록 */
.innotech-status-badge--frozen {
    background: rgba(200, 182, 226, 0.28);
    color: #6C4F94;
    border-color: rgba(200, 182, 226, 0.6);
}
@media (max-width: 480px) {
    .innotech-detail-table th {
        width: 92px;
        padding: 8px 10px;
        font-size: 12px;
    }
    .innotech-detail-table td {
        padding: 8px 10px;
        font-size: 12px;
    }
    .innotech-detail-section-title {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* 전산장비 목록 행의 관리 버튼(교체/퇴사/LOA 등록/조직 수정) — Tailwind slate 계열에 의존하지 않고
   전용 고정 HEX 색상을 쓴다(테마 반전 버그 회피 목적). */
.innotech-row-action-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(64px, 1fr));
    gap: 6px;
    min-width: 148px;
}
.innotech-row-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
}
.innotech-row-action:focus-visible {
    outline: 2px solid #2563EB;
    outline-offset: 2px;
}
.innotech-row-action--replace {
    background: rgba(147, 197, 253, 0.28);
    color: #1D4ED8;
    border-color: rgba(96, 165, 250, 0.55);
}
.innotech-row-action--replace:hover {
    background: rgba(147, 197, 253, 0.45);
}
.innotech-row-action--termination {
    background: rgba(244, 183, 163, 0.32);
    color: #B42318;
    border-color: rgba(227, 154, 130, 0.6);
}
.innotech-row-action--termination:hover {
    background: rgba(244, 183, 163, 0.5);
}
.innotech-row-action--loa {
    background: rgba(200, 182, 226, 0.32);
    color: #6C4F94;
    border-color: rgba(200, 182, 226, 0.65);
}
.innotech-row-action--loa:hover {
    background: rgba(200, 182, 226, 0.5);
}
.innotech-row-action--org {
    background: rgba(154, 219, 207, 0.3);
    color: #2F6459;
    border-color: rgba(123, 196, 182, 0.6);
}
.innotech-row-action--org:hover {
    background: rgba(154, 219, 207, 0.48);
}
/* 연장 관리 — 사용연한 만료 2개월 전부터만 표시되는 버튼. 앱 강조색(인디고, 사이드바 활성
   메뉴와 동일 계열)을 재사용해 "만료 임박 시 취할 수 있는 조치"임을 시각적으로 드러낸다. */
.innotech-row-action--extension {
    background: rgba(129, 140, 248, 0.28);
    color: #4338CA;
    border-color: rgba(129, 140, 248, 0.6);
}
.innotech-row-action--extension:hover {
    background: rgba(129, 140, 248, 0.45);
}
/* 영구 삭제(폐기) — 가장 위험한 동작이므로 다른 관리 버튼(연한 틴트 배경)과 달리 진한 빨강
   배경의 채워진 버튼으로 시각적으로 더 강하게 구분한다. 고정 HEX, Tailwind slate 미사용. */
.innotech-row-action--dispose {
    background: #C0342A;
    color: #FFFFFF;
    border-color: #A62A21;
}
.innotech-row-action--dispose:hover {
    background: #A62A21;
}
/* 장비정보 수정 — 전산장비 목록 관리 버튼 5개(교체/퇴사/LOA등록/조직수정/연장관리)가 이미
   다른 색상을 쓰고 있어, "교체"와 혼동되지 않도록 별도 고정 HEX(호박색 계열)를 쓴다. */
.innotech-row-action--edit {
    background: rgba(217, 180, 105, 0.32);
    color: #8A6116;
    border-color: rgba(217, 180, 105, 0.6);
}
.innotech-row-action--edit:hover {
    background: rgba(217, 180, 105, 0.5);
}
@media (max-width: 640px) {
    .innotech-row-action-group {
        min-width: 132px;
    }
}

/* 재고현황 관리 버튼(배정/재고일/폐기) 전용 한 줄 컴팩트 배치 — 다른 목록이 쓰는
   .innotech-row-action-group(2열 그리드)에는 영향을 주지 않도록 재고현황 전용 클래스로 범위를
   좁힌다(.innotech-hw-action-row를 전산장비 목록 전용으로 둔 것과 동일한 방식). 좁은 화면에서도
   줄바꿈하지 않고 .innotech-table-wrap의 가로 스크롤에 맡긴다. */
.innotech-inv-action-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    align-items: center;
    white-space: nowrap;
}
.innotech-inv-action-row .innotech-row-action {
    height: 28px;
    padding: 0 8px;
    font-size: 11px;
    white-space: nowrap;
    min-width: 0;
    flex-shrink: 0;
}
.innotech-inv-action-col {
    width: 230px;
    min-width: 230px;
}

/* 장비 사용 이력 — 식별 검수 필요 배지(기존 badge-warning과 구분되는 전용 고정 HEX 색상). */
.innotech-review-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 9999px;
    white-space: nowrap;
    background: rgba(233, 152, 108, 0.24);
    color: #A85A2E;
    border: 1px solid rgba(233, 152, 108, 0.55);
}

/* 장비 사용 이력 상세 — 세로 타임라인. 고정 HEX, Tailwind slate 미사용 원칙 유지. */
.innotech-custody-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.innotech-custody-item {
    position: relative;
    padding: 14px 16px 14px 28px;
    border-left: 2px solid #E2E8F0;
    background: #FFFFFF;
    border-radius: 0;
}
.innotech-custody-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 18px;
    width: 12px;
    height: 12px;
    border-radius: 9999px;
    background: #CBD5E1;
    border: 2px solid #FFFFFF;
}
.innotech-custody-item--open {
    border-left-color: #7BC4B6;
    background: rgba(154, 219, 207, 0.1);
}
.innotech-custody-item--open::before {
    background: #3D6F64;
}
.innotech-custody-item:last-child {
    border-left-color: transparent;
}

/* ── 전산장비 목록(hardware_list_view.php) 전용 컴팩트 한 줄 테이블 ─────────────────────
   .innotech-hw-table 범위 안에서만 적용되며, 재고현황/LOA/장비 사용 이력 등 다른 화면이
   쓰는 공통 .innotech-table 자체의 기본 스타일은 건드리지 않는다(각 화면은 여전히
   .innotech-table 클래스도 함께 갖고 있어 sticky 헤더·hover 배경 등 기존 동작은 그대로 유지). */
.innotech-hw-table {
    font-size: 13px;
    min-width: 1465px; /* 컬럼을 억지로 압축하지 않고 .innotech-table-wrap의 가로 스크롤에 맡긴다.
                           사양 컬럼(280px) 제거 후, 확보한 공간을 사용시작일/상태/모델/관리에
                           재배분한 11개 컬럼 폭의 합(아래 nth-child 규칙과 반드시 일치시킬 것). */
}
.innotech-hw-table th,
.innotech-hw-table td {
    white-space: nowrap;
    vertical-align: middle;
    padding: 7px 10px;
    height: 54px;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
}
.innotech-hw-table thead th a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}
/* 데이터 없음 안내 행(colspan)은 압축 규칙에서 제외 — 기존처럼 여유 있게 표시 */
.innotech-hw-table tbody tr td[colspan] {
    height: auto;
    white-space: normal;
    max-width: none;
    overflow: visible;
    text-overflow: clip;
}

/* 컬럼별 권장 폭 — 소속/성명/직원유형/장비유형/장비ID/브랜드/모델/사용시작일/사용연한/상태/관리 순서
   (사양 컬럼 제거로 11개 컬럼. 확보된 공간은 모델/사용시작일/상태/관리에 재배분했다). */
.innotech-hw-table th:nth-child(1),  .innotech-hw-table td:nth-child(1)  { width: 130px; max-width: 130px; }
.innotech-hw-table th:nth-child(2),  .innotech-hw-table td:nth-child(2)  { width: 120px; max-width: 120px; }
.innotech-hw-table th:nth-child(3),  .innotech-hw-table td:nth-child(3)  { width: 70px;  max-width: 70px; }
.innotech-hw-table th:nth-child(4),  .innotech-hw-table td:nth-child(4)  { width: 70px;  max-width: 70px; }
.innotech-hw-table th:nth-child(5),  .innotech-hw-table td:nth-child(5)  { width: 75px;  max-width: 75px; }
.innotech-hw-table th:nth-child(6),  .innotech-hw-table td:nth-child(6)  { width: 65px;  max-width: 65px; }
.innotech-hw-table th:nth-child(7),  .innotech-hw-table td:nth-child(7)  { width: 220px; max-width: 220px; }
.innotech-hw-table th:nth-child(8),  .innotech-hw-table td:nth-child(8)  { width: 115px; max-width: 115px; }
.innotech-hw-table th:nth-child(9),  .innotech-hw-table td:nth-child(9)  { width: 170px; max-width: 170px; }
.innotech-hw-table th:nth-child(10), .innotech-hw-table td:nth-child(10) { width: 105px; max-width: 105px; }
.innotech-hw-table th:nth-child(11), .innotech-hw-table td:nth-child(11) { width: 310px; min-width: 310px; overflow: visible; }

/* 사용연한 셀 전용 — 만료 배지를 텍스트 앞에 한 줄로 붙이기 위한 레이아웃. 컴팩트 테이블
   공통 규칙(.innotech-hw-table td { overflow:hidden; text-overflow:ellipsis; })이 이 셀의
   배지를 잘라 화면에 보이지 않게 만들던 문제를 이 셀에서만 해제한다(클래스 2개 조합이라
   공통 규칙보다 우선 적용되며, 다른 열의 말줄임 정책은 그대로 유지). */
.innotech-hw-table td.innotech-hw-usage-cell {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    /* 사용연한 만료 배지 뒤에 연장 차수 배지([1차 연장]/[2차 연장]/[최종 만료])까지 함께 붙는
       행은 고정 170px보다 넓은 폭이 필요하다. width는 그대로 두고 max-width만 풀어서(nth-child(9)
       규칙의 max-width:170px를 이 셀에서만 무효화), table-layout:auto가 실제 내용 폭에 맞춰
       컬럼을 넓히게 한다 — 배지가 없는 대다수 행은 여전히 170px 근처로 컴팩트하게 유지된다. */
    max-width: none;
}

/* 사용시작일 셀 전용 — YYYY-MM-DD 전체를 항상 한 줄로, 잘리거나 줄임표 없이 보여준다.
   nth-child(8)의 width:115px(≈110px 최소 요구 충족)는 그대로 두되, 공통 규칙의
   overflow:hidden/text-overflow:ellipsis만 이 셀에서 해제한다. */
.innotech-hw-table td.innotech-hw-date-cell {
    min-width: 110px;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
}

/* 장비상태 셀 전용 — 배지를 축약·말줄임·줄바꿈 없이 항상 전체 표시한다. */
.innotech-hw-table td.innotech-hw-status-cell {
    min-width: 100px;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
}
.innotech-hw-table td.innotech-hw-status-cell .innotech-status-badge {
    display: inline-flex;
    align-items: center;
    width: max-content;
    white-space: nowrap;
}

/* 관리 버튼 4개를 2x2 그리드가 아니라 한 줄로 배치 — 재고현황의 .innotech-row-action-group
   (2열 그리드)에는 영향을 주지 않도록 별도 클래스를 쓰고, 버튼 자체 크기도 이 컨테이너
   안에서만 재정의한다(공통 .innotech-row-action 기본 크기는 그대로 둠). */
.innotech-hw-action-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    align-items: center;
    white-space: nowrap;
}
.innotech-hw-action-row .innotech-row-action {
    height: 29px;
    padding: 0 10px;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── 대시보드(dashboard_view.php) 전용 만료 상태 배지/KPI 색상 — 고정 HEX, 기존
   .innotech-status-badge/.kpi-card와 동일한 색 계열(빨강=만료 위험, 황색=경고, 청록=안내)을
   재사용해 앱 전체 색 체계와 일관성을 유지한다. */
.innotech-status-badge--expired {
    background: rgba(244, 183, 163, 0.32);
    color: #B42318;
    border-color: rgba(227, 154, 130, 0.6);
}
.innotech-status-badge--warn1m {
    background: rgba(240, 201, 138, 0.28);
    color: #9B763F;
    border-color: rgba(221, 176, 104, 0.55);
}
.innotech-status-badge--notice2m {
    background: rgba(154, 219, 207, 0.28);
    color: #2F6459;
    border-color: rgba(123, 196, 182, 0.55);
}
.innotech-kpi-value--expired { color: #B42318 !important; }
.innotech-kpi-value--warn1m { color: #9B763F !important; }
.innotech-kpi-value--notice2m { color: #2F6459 !important; }
/* 연장 사용 중 KPI — 목록/배지에서 이미 쓰는 --frozen(보라)과 동일 계열로 통일. */
.innotech-kpi-value--frozen { color: #6C4F94 !important; }

/* 전산장비 목록(hardware_list_view.php) 사용연한 만료 배지 — 아이콘이 붙는 경우에만 쓰는
   정렬 모디파이어. 기존 .innotech-status-badge(텍스트만, display:inline-block)는 그대로 두고
   다른 화면의 배지 정렬에 영향을 주지 않는다. */
.innotech-status-badge--icon {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    height: 22px;
    padding: 0 6px;
    font-size: 11px;
    white-space: nowrap;
    flex-shrink: 0;
}
.innotech-status-badge--icon svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}

/* 전산장비 지급현황(equipment_issuance_view.php) 탭 3개 — 이 화면 전용 컴포넌트. 고정 HEX,
   Tailwind slate 미사용 원칙 유지, 앱 강조색(인디고, 사이드바 활성 메뉴와 동일 계열)을 재사용. */
.innotech-tab-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.innotech-tab {
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    white-space: nowrap;
}
.innotech-tab--active {
    background: rgba(129, 140, 248, 0.22);
    color: #4338CA;
    border-color: rgba(129, 140, 248, 0.55);
}
.innotech-tab--disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
