/* Style for the specific timeline posts container */
.timeline-post {
    max-width: 600px;
    margin: 0 auto;
}


/* Style for the list of timeline posts */
.timeline-post .random-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.category_szekelylap {
	padding: 0px 15px;
}


/* Style for each post item */
.timeline-post .random-posts-list li {
    margin-bottom: 25px; /* Increased spacing between messages */
    padding: 15px; /* Increased padding for a better look */
    
    position: relative;
    width: auto;
    max-width: 90%;
    clear: both;
    word-wrap: break-word; /* Ensure content doesn't overflow */
    transition: all 0.5s ease; /* Smooth transition */
}
.timeline-post .random-posts-list li p{
    font-size: 13px!important;
}
.timeline-post .random-posts-list li a{
    font-size: 11px!important;
    text-decoration: none!important;
}

/* Alternating styles for chat bubbles */
.timeline-post .random-posts-list li:nth-child(odd) {
    background-color: var(--color-two);
	color: var(--color-one);
	border-radius: 13px; /* Asymmetrical rounded corners */
    align-self: flex-start;
    margin-left: 15px; /* More padding left for transparent background */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1),
				0 8px 20px rgba(59, 89, 152, 0.15), /* Second shadow for depth */
				inset 0 0 10px rgba(255, 255, 255, 0.2); /* Inner glow for dimension */
}

.timeline-post .random-posts-list li:nth-child(even) {
    background-color: var(--color-three);
    align-self: flex-end;
	border-radius: 13px; /* Asymmetrical rounded corners */
    margin-right: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1),
            0 8px 20px rgba(59, 89, 152, 0.15), /* Second shadow for depth */
            inset 0 0 10px rgba(255, 255, 255, 0.2); /* Inner glow for dimension */
}
.timeline-post .random-posts-list li:nth-child(odd) a {
		color: #fff;
}
.timeline-post .random-posts-list li:nth-child(even):hover {

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 
	0 15px 30px rgba(0, 0, 0, 0.15);
}
.timeline-post .random-posts-list li:nth-child(odd):hover {

    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2), 
        0 15px 30px rgba(0, 0, 0, 0.15);
}
/* Adding the chat bubble tail */
.timeline-post .random-posts-list li::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

/* Tail for the left side (odd posts) */
.timeline-post .random-posts-list li:nth-child(odd)::after {
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--color-two) transparent transparent;
    top: 15px; /* Adjusted position for better alignment */
    left: -10px;
    transform: rotate(0deg); /* Correct orientation */
}

/* Tail for the right side (even posts) */
.timeline-post .random-posts-list li:nth-child(even)::after {
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--color-three);
    top: 15px; /* Adjusted position for better alignment */
    right: -10px;
    transform: rotate(0deg); /* Correct orientation */
}

.frontpage_column_posts .timeline-post .random-posts-list li:nth-child(odd)::after{
	display:none;
}

.frontpage_column_posts .timeline-post .random-posts-list li{
		border-radius: 13px 13px;
		margin-left: 0px!important;
}
.frontpage_column_posts .frontpage_right_posts{
		padding-left: 19px!important;
		padding-right: 9px!important;
		
	}

.random-posts-list .wp-block-post-excerpt{
    font-size: 13px;
}
.random-posts-list .wp-block-post-author__avatar img{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
}
.random-posts-list .wp-block-post-author__content{
font-size: 0.7em;
}
/* Style for the post title */
.timeline-post .post-title a {
    font-weight: bold;
    color: #333;
    text-decoration: none;
    border-bottom: none; /* Remove underline */
}

/* Style for the post content */

.timeline-post .post-content{
	margin: 0;
  padding: 0px 0px 0px 0px;
  box-sizing: border-box;
  text-indent: 0!important;
  margin-block-start: 0px!important;
  margin-block-end: 0px!important;
  font-family:"Inter", sans-serif!important;

}
.random-posts-container .post-title {
    display:none;
}

/* Style for the post author */
.timeline-post .post-author {
    font-size: 0.7em; /* Reduced font size */
    color: #777;
}


/* Flex container for author, author image, and date */
.timeline-post .post-meta {
    display: flex;
    align-items: center;
    margin-top: -25px;
    gap: 10px; /* Space between items */
    justify-content: flex-end; /* Align to the right */
}

/* Style for the author image */
.timeline-post .post-author-avatar img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
	box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
}
.timeline-post .post-author-avatar img:hover {
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.1); /* Slightly deeper shadow on hover */
    transform: scale(1.05); /* Subtle zoom effect */
}

/* Style for the post featured image */
.timeline-post .post-featured-image {
    margin-top: 10px;
    max-width: 100%; /* Ensure image does not overflow */
    height: auto;
    border-radius: 10px;
    display: block; /* Make sure the image is a block element */
    margin-left: auto;
    margin-right: auto;
    border: 0px solid white; /* 2px white border */
}

.timeline-post .post-featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

/* Style for the post content image */
.timeline-post .post-content-image {
    margin-top: 10px;
    max-width: 100%; /* Ensure image does not overflow */
    height: auto;
    border-radius: 10px;
    display: block; /* Make sure the image is a block element */
    margin-left: auto;
    margin-right: auto;
}

/* Style for legy ne legy posts */
._legy_ne_legy {
	justify-content: center; 
	align-items: center; 
	margin: 0 auto; /* Center the div itself horizontally */
    line-height: 0;
}
._legy_ne_legy .emoji-rating{
	display:none!important;
}	
._legy_ne_legy p{
	font-size:25px!important;
	font-family: Italianno;
	color: var(--color-two);
}
._legy_ne_legy .post-category{
		display:none;
}
._legy_ne_legy .post-author-avatar{
		display:none;
}
._legy_ne_legy .post-author{
		display:none;
}
._legy_ne_legy .likebtn_container{
		display:none;
}
._legy_ne_legy .post-title{
		display:none;
}
._legy_ne_legy .post-date{
		display:none;
}
._legy_ne_legy ul {
		list-style:none;
}
._legy_ne_legy a {
		text-decoration: none;
}
._legy_ne_legy .emoji-rating {
		display:none;
}
/* Loader style */
#random-posts-loader {
    text-align: center;
    padding: 10px;
}

/* Hide caption shortcode */
.timeline-post .post-content img[class*="wp-image-"] {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
    display: none;
}

.timeline-post .post-content .wp-caption {
    display: none !important;
}

/* Remove underline from links */
.timeline-post a {
    text-decoration: none;
}





.kategoria_cloud a:hover {
    -webkit-transform: scale(1.1);
}


.post-category a {
	font-weight:700;
	font-size:12px;
}

.likebtn-wrapper.lb-style-squarespace {
	margin: auto;
  width: 50%;
}



/* Flex container for author, author image, and date */
.timeline-post .post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Align to the sides */
}

/* Style for post category */
.timeline-post .post-category {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 10px;
    text-align: left;
	margin-top: -10px;
}
.frontpage_column_posts .post-category {
	padding: 2px 20px;
	border-radius: 0px 0px 0px 0px;
	margin: 0 auto;
	width: 8.5rem;
    text-align: center;
}


.frontpage_column_posts .emoji-vote-count{
		color: var(--color-two)!important;
}
frontpage_right_posts .post-category {
	text-align: center!important;
}
/* Style for post date */
.timeline-post .post-date {
	display:none;
}

/* Center align like/dislike button */
.likebtn-wrapper.lb-style-squarespace {
    margin: auto;
    text-align: center;
    width: 100%;
}

/* Hide caption shortcode */
.timeline-post .post-content .wp-caption {
    display: none !important;
}
/* Style for author avatar */
.timeline-post .post-author-avatar {
    margin-top: -1em;
    margin-left: 10px;
	float:right;
}

/* Style for author name */
.timeline-post .post-author {
    font-size: 0.7em;
    color: #555;
    text-align: right;
	margin-top: -10px;
}
.header_new{
	margin-top:0px;
}

/* Add styles for category images */
.category-image {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
	display:none;
}

.random-posts-list .floating-info-box{
    display:none;
}
.post-category a {
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
}

/* Additional styles (if necessary) */
.random-posts-list {
    list-style-type: none;
    padding: 0;
}

.random-posts-list li {
    margin-bottom: 20px;
}

.post-title {
    font-size: 16px;
    font-weight: bold;
}

.post-content {
    font-size: 13px;
}

.post-featured-image img {
    max-width: 100%;
    height: auto;
}

.post-author-avatar img {
    border-radius: 50%;
}

.post-author {
    font-size: 14px;
}

.post-date {
    font-size: 12px;
    color: #888;
}


