body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e9ebee;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.post-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    margin: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.post-container:hover {
    transform: translateY(-10px);
}

.post-header {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    background-color: #f7f7f7;
}

.profile-pic {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border: 2px solid #007bff;
    
}

.user-info {
    display: flex;
    flex-direction: column;
}

.username {
    margin: 0;
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

.post-date {
    margin: 0;
    color: #777;
    font-size: 0.9em;
}

.more-options {
    margin-left: auto;
    font-size: 1.5em;
    color: #777;
    cursor: pointer;
}

.post-content {
    padding: 15px;
}

.post-content p {
    margin: 0 0 10px;
    font-size: 1em;
    line-height: 1.5;
    color: #555;
}

.post-image {
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}

.post-footer {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    border-top: 1px solid #ddd;
    background-color: #f7f7f7;
}
.countTT{
    font-size: 10px;
    text-align: center;
    margin-top: 6px;
    margin-bottom: -10;
}
.like-btn, .comment-btn, .share-btn ,.save-btn{
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.like-btn:hover, .comment-btn:hover, .share-btn:hover {
    background-color: #0056b3;
}

.like-btn i, .comment-btn i, .share-btn i {
    margin-right: 5px;
}
