.thread__actions {
    display: flex;
    gap: 8px;
}

.action-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.tweet:last-child::after {
    display: none;
}/* Remove separating border between parent post and its replies on the post page. */

/* Remove separating border between parent post and its replies on the post page. */
.threads .tweet:last-child {
    border-bottom: none !important;
}

.carousel-post-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.carousel-nav-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--functional);
    font-size: 14px;
}

.carousel-nav-info i {
    color: #8b5cf6;
}

.carousel-nav-name {
    font-weight: 600;
    color: var(--primary);
}

.carousel-nav-counter {
    background: var(--background);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.carousel-nav-btn {
    background: var(--background);
    border: 1px solid var(--border);
    color: var(--functional);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.carousel-nav-btn:hover:not(:disabled) {
    background: var(--secondary);
    color: var(--primary);
    border-color: #8b5cf6;
}

.carousel-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-nav-btn i {
    font-size: 16px;
}/* Post Type Indicator *//* Adjust the article to connect with the indicator */

/* Adjust the article to connect with the indicator */
.post-type-indicator+.tweet {
    margin-top: 0;
}/* Post Top Header - Redesign *//* translucent dark background */

.post-top-header .back-button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    color: var(--primary);
    text-decoration: none;
    border: none;
    background: transparent;
}

.post-top-header .back-button:hover {
    background-color: rgba(239, 243, 244, 0.1);
}

.post-top-header .back-button i {
    font-size: 16px;
}
