a.tbl-link {
    color: #1e293b !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    text-decoration: none !important;
}
.custom-toc {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.blogContentWrapper strong{
    font-weight:600;
}

.blogContentWrapper a:hover{
    text-decoration:none !important;
}
span.chevron {
    display: flex !important;
    align-items: center;
}
span.chevron img {
    width: 17px !important;
    height: 17px !important;
}

.custom-footer-toc-wrapper {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            font-family: sans-serif;
        }

        .custom-accordion-body {
            width: 100%;
            background-color: #ffffff;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

        .custom-accordion-body.open {
            max-height: 50vh;
            overflow-y: auto;
        }

        .custom-accordion-body ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .custom-accordion-body li {
            padding: 10px 20px;
            border-bottom: 1px solid #eee;
            font-size: 14px !important;
            cursor: pointer;
        }

        .custom-accordion-body li:hover {
            background-color: #f0f0f0;
        }

        .custom-accordion-toggle {
            width: 100%;
            background-color: #ffffff;
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.08);
        }

        .custom-accordion-toggle h4 {
            margin: 0;
            font-size: 16px !important;
            font-weight: 600 !important;
            color: black;
        }

        .custom-accordion-toggle .chevron {
            display: inline-block;
            transition: transform 0.3s ease;
            font-size: 18px;
        }

        .custom-accordion-toggle.active .chevron {
            transform: rotate(180deg);
        }