/* ── Template 2 — Side Navigation ── */

.awv-t2 .awv-t2-layout {
      display: flex;
    border: 3px solid #d2d2d2;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgb(16 17 17 / 7%);
    min-height: 380px;
}

/* ── Left navigation ── */
.awv-t2 .awv-t2-nav {
    
    flex-shrink: 0;
    background: #fff;
    border-right: 1px solid #dce6f5;
    overflow-y: auto;
}
.awv-t2 .awv-t2-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 14px 18px 16px;
    cursor: pointer;
    border-left: 3px solid transparent;
    border-bottom: 1px solid #eef2fb;
    transition: background .15s, border-color .15s;
    outline: none;
}
.awv-t2 .awv-t2-nav-item:last-child    { border-bottom: none; }
.awv-t2 .awv-t2-nav-item:hover         { background: #eef3fd; }
.awv-t2 .awv-t2-nav-item:focus-visible { background: #eef3fd; }
.awv-t2 .awv-t2-nav-item.active {
    background: #e8f0fe;
    border-left-color: #247afb;
}
.awv-t2 .awv-t2-nav-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #247afb;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.awv-t2 .awv-t2-nav-icon i,
.awv-t2 .awv-t2-nav-icon span { color: #fff; }
.awv-t2 .awv-t2-nav-title {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: #1a2e44;
    line-height: 1.3;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}
.awv-t2 .awv-t2-nav-item.active .awv-t2-nav-title {
    color: #363636;
    font-weight: 700;
	font-size: 19px;
}
.awv-t2 .awv-t2-nav-badge {
    font-size: 11px;
    font-weight: 600;
    background: #dce6f5;
    color: #247afb;
    border-radius: 20px;
    padding: 2px 7px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}
.awv-t2 .awv-t2-nav-badge.done {
    background: #c8e6c9;
    color: #2e7d32;
}

/* ── Right content area ── */
.awv-t2 .awv-t2-body {
    flex: 1;
    overflow: hidden;
    background-color: #fff;
    background-image: url('../images/bg2.png');
    background-size: 100%;
    background-position: 0px 0px;
    background-repeat: no-repeat;
}
.awv-t2 .awv-t2-panel         { display: none; }
.awv-t2 .awv-t2-panel.active  { display: block; animation: awvFadeSlide .22s ease; }

@keyframes awvFadeSlide {
    from { opacity: 0; transform: translateX(10px); }
    to   { opacity: 1; transform: translateX(0); }
}

.awv-t2 .awv-t2-panel-header {
    background: #247afb;
    color: #fff;
    padding: 21px 20px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: .01em;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}
.awv-t2 .awv-t2-panel-count {
    margin-left: auto;
    font-size: 12px;
    font-weight: 400;
    opacity: .8;
    background: rgba(255, 255, 255, .18);
    border-radius: 20px;
    padding: 2px 10px;
}
.awv-t2 .awv-items { padding: 6px 0; }

/* ── Responsive: stack on mobile ── */
@media (max-width: 620px) {
    .awv-t2 .awv-t2-layout  { flex-direction: column; min-height: auto; }
    .awv-t2 .awv-t2-nav {
        width: 100%;
        display: flex;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid #dce6f5;
        scrollbar-width: thin;
    }
    .awv-t2 .awv-t2-nav-item {
        flex-direction: column;
        gap: 4px;
        padding: 10px 12px;
        border-left: none;
        border-bottom: 3px solid transparent;
        border-right: 1px solid #eef2fb;
        min-width: 72px;
        text-align: center;
        align-items: center;
    }
    .awv-t2 .awv-t2-nav-item.active {
        border-bottom-color: #247afb;
        border-left-color: transparent;
    }
    .awv-t2 .awv-t2-nav-title                          { display: none; }
    .awv-t2 .awv-t2-nav-item.active .awv-t2-nav-title  { display: none; }
    .awv-t2 .awv-t2-nav-badge                          { font-size: 10px; }
    .awv-t2 .awv-t2-nav-icon                           { width: 28px; height: 28px; font-size: 14px; }
    .awv-t2 .awv-t2-panel-header                       { font-size: 15px; padding: 14px 16px; }
    .awv-t2 .awv-t2-panel-count                        { font-size: 11px; }
}

@media (max-width: 400px) {
    .awv-t2 .awv-t2-nav-item {
        min-width: 58px;
        padding: 8px 8px;
    }
    .awv-t2 .awv-t2-nav-icon                           { width: 24px; height: 24px; font-size: 12px; }
    .awv-t2 .awv-t2-nav-title                          { display: none; }
    .awv-t2 .awv-t2-nav-item.active .awv-t2-nav-title  { display: none; }
    .awv-t2 .awv-t2-panel-header                       { font-size: 14px; padding: 12px 14px; }
}

@media print {
    .awv-actions,
    .awv-progress-wrap        { display: none; }
    .awv-t2 .awv-t2-nav       { display: none; }
    .awv-t2 .awv-t2-layout    { display: block; border: none; box-shadow: none; }
    .awv-t2 .awv-t2-panel     { display: block !important; }
    .awv-t2 .awv-t2-panel-header { background: #247afb !important; -webkit-print-color-adjust: exact; }
}
