.post-input {
    min-height: 100px;
    resize: none;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.post-image {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
    border-radius: 0.5rem;
}

.post-interaction {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4B5563;
    transition: color 0.2s ease;
}

.post-interaction:hover {
    color: #3B82F6;
}

.trending-topic {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease;
}

.trending-topic:hover {
    background-color: #F3F4F6;
}

.post-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    object-fit: cover;
}

.post-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.post-meta {
    margin-left: 1rem;
}

.post-author {
    font-weight: 600;
    color: #1F2937;
}

.post-time {
    font-size: 0.875rem;
    color: #6B7280;
}

.hashtag {
    color: #3B82F6;
    font-weight: 500;
    transition: color 0.2s ease;
}

.hashtag:hover {
    color: #2563EB;
    text-decoration: underline;
}
