.main-content-wrapper {
    position: relative;

    color: #fff;
    background-color: #5c9f55;
}
    .main-content-title {
        font-size: 18px;

        position: relative;
        display: inline-block;

        margin-left: 30px;
    }
        .main-content-title::before {
            content: '';
            position: absolute;
            left: -10px;
            top: 14px;

            width: 4px;
            height: 1.2em;

            background-color: #fff;
            transform: translateY(-50%);
            border-radius: 0px;
        }

#main-item-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background-color: #ccc;
}
    .main-item {
        position: relative;
        display: block;

        width: 100%;
        height: 46px;

        padding: 15px 24px;
    }
    #main-item-wrapper .main-item:nth-of-type(odd) {
        background-color: #fff;
    }
    #main-item-wrapper .main-item:nth-of-type(even) {
        background-color: #f5f9f4;
    }
        .main-item-title {
            position: relative;
            display: flex;
            font-size: 14px;
        }
            .main-item-title-tooltip-wrapper {
                position: relative;
                display: flex;
                flex-direction: column;
                padding-left: 5px;
            }
                .main-item-title-tooltip-icon {
                    position: absolute;
                    top: 5px;
                    width: 11px;
                    aspect-ratio: 1;
                    opacity: 0.8;
                    cursor: pointer;
                }



                .tippy-box {
                    font-size: 14px;
                    line-height: 1.5;
                    padding: 10px 12px;
                    border-radius: 10px;
                    max-width: 520px;
                    white-space: normal;

                    overflow-wrap: break-word;
                    word-break: keep-all; 
                }



        .main-item-right-arrow {
            position: absolute;
            top: 11px;
            right: 20px;
            cursor: pointer;
        }
            .main-item-right-arrow img {
                height: 12px;
            }
