/* Ensure the horizontal line spans the entire width with no gaps */
.fading-line {
    height: 2px;
    background: linear-gradient(to right, red, transparent);
    width: 100%;
    position: relative;
}
