.tab-pane-custom {
    display: none;
}

.tab-pane-custom.active {
    display: block;
}
.right-panel {
    max-height: 720px;
    overflow-y: scroll;
    background: #fff;
    padding: 30px;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.right-panel::-webkit-scrollbar {
    display: none;
}

.vertical-tabs {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-nav {
    min-width: 180px;
    background: #f8f9fa;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-right: 1px solid #eee;
}

.sidebar-nav .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    background: #fff;
    color: #800E33;
    font-weight: 600;
    border: 1px solid #eee;
    transition: 0.2s;
}

.sidebar-nav .nav-link i {
    font-size: 1.2rem;
    margin-right: 10px;
}

.sidebar-nav .nav-link span {
    font-size: 0.9rem;
}

.sidebar-nav .nav-link:hover {
    background-color: #e9ecef;
}

.sidebar-nav .nav-link.active {
    background-color: #800E33 !important;
    color: #fff !important;
}

.sidebar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #800E33;
}

.tab-content {
    flex: 1;
    padding: 20px;
}

.about-box {
    background: #fce6ef;
    padding: 15px 20px;
    border-left: 4px solid #800E33;
    border-radius: 6px;
    margin-bottom: 16px;
}

.text-custom-quote {
    color: #800E33;
    font-size: 0.95rem;
    line-height: 1.5;
}

.main-category-nav {
    display: flex;
    gap: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

.category-btn {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #800E33;
    background: transparent;
    color: #800E33;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.3s;
    cursor: pointer;
}

.category-btn:hover {
    background-color: #fce6ef;
}

.category-btn.active {
    background-color: #800E33;
    color: #fff;
    box-shadow: 0 4px 12px rgba(128, 14, 51, 0.3);
}

.stats-badge {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.stats-badge::-webkit-scrollbar {
    display: none;
}

.stats-badge span {
    background: #fce6ef;
    border: 1px solid #f8c1d1;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

.stats-badge i {
    color: #800E33;
    margin-right: 5px;
}

.info-card {
    background: #fff3f8;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 15px rgba(128, 14, 51, 0.08);
}

.info-row {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.info-item {
    flex: 1;
    min-width: 48%;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #fce6ef;
}

.info-label {
    font-weight: 600;
    color: #800E33;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.info-label i {
    color: #db5985;
}

.info-value {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.data-row {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.data-label {
    width: 45%;
    font-weight: 600;
    color: #666;
}

.data-value {
    width: 55%;
    color: #111;
    word-break: break-word;
}

@media (min-width: 992px) and (max-width: 1199px) {

    .right-panel {
        padding: 20px;
    }

    .right-panel p {
        font-size: 14px;
        line-height: 1.3;
    }

    .sidebar-nav {
        min-width: 150px;
        padding: 8px;
        gap: 8px;
    }

    .sidebar-nav .nav-link {
        padding: 10px 12px;
        font-size: 13px;
    }

    .sidebar-nav .nav-link i {
        font-size: 1rem;
        margin-right: 6px;
    }

    .sidebar-nav .nav-link span {
        font-size: 0.8rem;
    }

    .tab-content {
        padding: 15px;
    }

    .info-card {
        padding: 15px;
    }

    .info-item {
        padding: 12px;
    }

    .info-row {
        gap: 12px;
    }

    .info-label,
    .info-value {
        font-size: 13px;
    }

    h2 {
        font-size: 20px;
    }

    .stats-badge span {
        font-size: 11px;
        padding: 6px 8px;
    }

    .category-btn {
        padding: 10px 14px;
        font-size: 13px;
    }

    .about-box {
        padding: 12px 16px;
    }

    .about-box h6 {
        font-size: 14px;
    }

    .text-custom-quote {
        font-size: 13px;
        line-height: 1.4;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .sidebar-nav {
        min-width: 170px;
    }

    .info-row {
        gap: 15px;
    }

    .info-item {
        padding: 14px;
    }

    .stats-badge span {
        font-size: 12px;
        padding: 6px 10px;
    }

    .about-box {
        padding: 14px 18px;
    }

    .about-box h6 {
        font-size: 15px;
    }

    .text-custom-quote {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (min-width: 1400px) {

    .right-panel {
        padding: 30px;
    }

    .sidebar-nav {
        min-width: 180px;
    }

    .info-row {
        gap: 20px;
    }

    .info-item {
        padding: 15px;
    }

    .stats-badge span {
        font-size: 13px;
        padding: 8px 14px;
    }

    .about-box {
        padding: 15px 20px;
    }

    .text-custom-quote {
        font-size: 0.95rem;
    }
}
