.imran-toc-card {
    width: 270px;
    max-width: 400px;
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

/* Title */
.imran-toc-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ff7a00;
}

/* List */
.imran-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc-counter;
}

/* Items */
.imran-toc-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

/* Number circle */
.imran-toc-list li::before {
    counter-increment: toc-counter;
    content: counter(toc-counter);
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: #f4f4f4;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Links */
.imran-toc-list a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
}

.imran-toc-list a:hover {
    color: #ff7a00;
}
/* ===== TOC Header ===== */
.imran-toc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 16px;
}

.imran-toc-icon {
    width: 34px;
    height: 34px;
    background: #ff7a00;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Collapsible list */
.imran-toc-list {
    max-height: 2000px;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    opacity: 1;
}

/* Collapsed state */
.imran-toc-card.collapsed .imran-toc-list {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
}
