
.flyOut {cursor : default;}
.flyOver {cursor : pointer;}
.flyOverUL {cursor : pointer; text-decoration:underline;}

 


@media (max-width: 577px) {
    body{font-size: 12px;}
	.inline800_gt {
		display: none;
	  }
	  .inline800_lt {
		display: block;
	  }

}
@media (min-width: 577px) and (max-width: 620px) {
    body{font-size: 16px;}
	.inline800_gt {
		display: none;
	  }
	  .inline800_lt {
		display: block;
	  }
}
@media (min-width: 620px) and (max-width: 768px) {
    body{font-size: 16px;}
	.inline800_gt {
		display: none;
	  }
	  .inline800_lt {
		display: block;
	  }

}
@media (min-width: 768px) and (max-width: 1200px) {
    body{font-size: 17px;}
	.inline800_gt {
		display: block;
	  }
	  .inline800_lt {
		display: none;
	  }

		
}
@media (min-width: 1200px)   {
    body{font-size: 17px;}
	.inline800_gt {
		display: block;
	  }
	  .inline800_lt {
		display: none;
	  }

}

  

  .emoji {
	width:20px;
	height:20px;
  }


  .img_outside_div{

	width: 98% - 28px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;

  }

  .img_inside_div{
	
	max-width:1200px; 
	min-width:220px;

  }  

  .img_class {
	max-width:100%;
  }

  .bot-width {
  width: 45px;
  height: auto; /* This maintains the image's aspect ratio */
}

     .feed {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .post {
            padding: 20px;
            border-bottom: 1px solid #e0e0e0;
            transition: background 0.2s;
        }

        .post:last-child {
            border-bottom: none;
        }

        .post:hover {
            background: rgba(102, 126, 234, 0.03);
        }

        .post-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .post-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #667eea;
            flex-shrink: 0;
        }

        .post-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        .post-info {
            flex: 1;
        }

        .post-author {
            font-weight: 600;
            font-size: 16px;
            color: #333;
        }

        .post-time {
            font-size: 13px;
            color: #888;
        }

        .post-email {
            font-size: 12px;
            color: #999;
            margin-top: 2px;
        }

        .post-content {
            margin-bottom: 15px;
            line-height: 1.6;
            color: #444;
        }

        .post-image {
            width: 100%;
            border-radius: 12px;
            margin-bottom: 15px;
        }

        .post-actions {
            display: flex;
            gap: 25px;
            padding-top: 10px;
        }