    /* Additional styles for See More/Less functionality */
    .description-content {
        position: relative;
        overflow: hidden;
    }

    .description-content.collapsed {
        max-height: 120px;
        /* Show approximately 4-5 lines */
    }

    .description-gradient {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40px;
        background: linear-gradient(transparent, rgba(255, 255, 255, 0.9));
        pointer-events: none;
    }

    .see-more-btn {
        background: none;
        border: none;
        color: #1877f2;
        font-weight: 600;
        cursor: pointer;
        padding: 5px 0;
        font-size: 14px;
        text-decoration: none;
        display: inline-block;
        margin-top: 5px;
    }

    .see-more-btn:hover {
        text-decoration: underline;
    }

    /* Clickable links styles */
    .update-description a {
        color: #1877f2;
        text-decoration: none;
        font-weight: 500;
    }

    .update-description a:hover {
        text-decoration: underline;
    }

    .update-description a:visited {
        color: #8a2be2;
    }

    /* Link preview styles */
    .link-preview {
        border: 1px solid #e4e6ea;
        border-radius: 8px;
        margin-top: 10px;
        overflow: hidden;
        background: #f8f9fa;
    }

    .link-preview-content {
        padding: 12px;
    }

    .link-preview-title {
        font-weight: 600;
        color: #1c1e21;
        margin-bottom: 5px;
        font-size: 14px;
        line-height: 1.3;
    }

    .link-preview-description {
        color: #65676b;
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 5px;
    }

    .link-preview-url {
        color: #65676b;
        font-size: 12px;
        text-transform: uppercase;
    }