body {
            background: #f3f6f8;
            font-family: "Segoe UI", "Arial", sans-serif;
        }
        .linkedin-post {
            max-width: 500px;
            margin: 40px auto;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(18, 18, 18, 0.10);
            padding: 1.5em;
            line-height: 1.2;
            position: relative;
        }
        .post-header {
            display: flex;
            align-items: center;
            margin-bottom: 0.8em;
            margin-top: 10px;
        }
        .category-label {
            position: absolute;
            top: 0;
            right: 30px;
            background-color: #ffffff;
            color: #333;
            padding: 5px 15px;
            font-size: 12px;
            font-weight: bold;
            border: 1px solid #ddd;
            border-radius: 15px;
            transform: translateY(-50%);
            z-index: 10;
        }

        /* Variantes de couleurs pour différentes catégories */
        .category-tech {
            background-color: #e3f2fd;
            color: #1976d2;
            border-color: #bbdefb;
        }
        .avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-right: 1em;
            object-fit: cover;
        }
        .post-info {
            flex: 1;
        }
        .author {
            font-weight: bold;
            color: #222;
            font-size: 1em;
        }
        .headline {
            color: #666;
            font-size: 0.70em;
        }
        .timestamp {
            color: #aaa;
            font-size: 0.80em;
        }
        .post-content {
            color: #232323;
            margin: 1em 0;
            font-size: 0.9em;
            line-height: 1.5;
        }
        .post-image {
            width: 100%;
            border-radius: 0.5em;
            margin-top: 1em;
            margin-bottom: 1em;
        }
        .linkedin-actions {
            display: flex;
            gap: 2em;
            margin-top: 1em;
            color: #606770;
            font-size: 0.98em;
        }
        .linkedin-actions span {
            cursor: pointer;
            padding: 3px 8px;
            border-radius: 4px;
        }
        .linkedin-actions span:hover {
            background-color: #eef3f8;
            color: #0a66c2;
        }
        .post-statistics {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.95em;
            border-bottom: 1px solid #e1e9ee;
            padding-bottom: 0.7em;
            margin-bottom: 0.9em;
            color: #616770;
        }