.timeline-release-note a:visited, .detail-release-note  a:visited {
    color: #000;
}

.timeline-release-note a:hover, .detail-release-note a:hover {
    color: #3bc643;
}

.release-note-modal {
    overflow-y: hidden !important;
}

.release-note-badge {
    position: absolute;
    top: 10px;
    left: 50px;
    width: 8px;
    height: 8px;
    background-color: #E23820;
    border-radius: 50%;
}

.release-note-dialog {
    top: 0;
    left: 0;
    max-width: 650px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;

    .modal-body {
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;

        .modal-image {
            width: 9rem;
            margin-bottom: 10px;
            display: block;
            margin: 0 auto;
            margin-bottom: 48px;
        }

        .h3-bold {
            font-weight: 600;
        }
    }

	.btn-show-more {
		background-color: #E5E7EB !important;
		transition: 0.5s;
		color: #393939 !important;
		font-size: 13px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		letter-spacing: -0.13px;

        &:hover {
            opacity: 0.5;
        }
    }
}

.list-panel {
    padding: 0.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    align-self: stretch;
    border-radius: 5px;
    background: #FFF;

    .timeline {
        flex-direction: column;
        gap: 20px;

        .timeline-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;

            .timeline-left {
                flex: 0 0 100px;
                text-align: center;
                font-size: 14px;
                color: #777;
            }

            .timeline-right {
                flex: 1;
                background: #fff;
                padding-left: 20px;
                padding-bottom: 20px;
                border-left: 2px solid #ddd;
                line-height: 2.5rem;

                h3 {
                    font-size: 16px;
                    font-weight: bold;
                    margin-bottom: 5px;
                }

                p {
                    font-size: 14px;
                    color: #666;
                }

                .badge-btn {
                    display: flex;
                    align-items: flex-start;
                    gap: 10px;

                    .badge {
                        display: inline-block;
                        background: #DCFCE7;
                        color: #166534;
                        padding: 5px 10px;
                        border-radius: 5px;
                        font-size: 12px;
                        font-weight: bold;
                    }
                }

			
				.btn-show-more {
					display: inline-block;
					background: #E5E7EB !important;
					color: #393939 !important;
					padding: 8px 12px;
					margin-top: 1rem;
					border-radius: 5px;
                    font-weight: 600;
					font-size: 12px;
					border: none;
					cursor: pointer;
					transition: 0.5s;
                    line-height: 1rem;

                    &:hover {
                        background: #d6d6d6;
                    }
                }
            }

            .timeline-right::before {
                content: "";
                position: absolute;
                left: 151px;
                width: 20px;
                height: 20px;
                border-radius: 50%;
                background: #fff;
                border: 1px solid #ddd;
                box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
            }
        }
    }
}

.detail-panel {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    align-self: stretch;
    border-radius: 5px;
    background: #FFF;

    .body {
        flex-direction: column;
        gap: 20px;

        .item {
            align-items: flex-start;
            gap: 20px;

            .date {
                flex: 0 0 100px;
                font-size: 14px;
                color: #777;
                padding-bottom: 10px;
            }

            .description {
                flex: 1;
                background: #fff;
                padding-bottom: 20px;

                h3 {
                    font-size: 16px;
                    font-weight: bold;
                    margin-bottom: 5px;
                }

                p {
                    font-size: 14px;
                    color: #666;
                }

                .badge-btn {
                    display: flex;
                    align-items: flex-start;
                    gap: 10px;

                    .badge {
                        display: inline-block;
                        background: #DCFCE7;
                        color: #166534;
                        padding: 5px 10px;
                        border-radius: 5px;
                        font-size: 12px;
                        font-weight: bold;
                    }
                }
            }
        }
    }
}