body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.post-section {
    margin-left: 0;
    text-align: left;
    border-bottom: 1px solid #ccc;
}

.post-section label[for="postInput"] {
    margin-left: 20px;
}

.post-section #postInput {
    flex: 1;
    margin-left: 10px;
    margin-right: 5px;
    width: 60%;
    padding: 2px;
}

.post-section #submit-post {
   padding: 2px;
}

.scrollable-content {
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 500px;
    overflow-y: scroll;
    padding: 10px;
}

.feed-item {
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;    
    /*max-width: 740px;*/
    margin-left: 0;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 10px;
    padding-right:10px;
    /*padding: 10px;*/
    margin-bottom: 10px;
    border: 1px solid #ccc
}

.text-content {
   text-align: left;
   margin-left: 20px;
}

.poll-content {
   text-align: left;
   margin-left: 20px
}

.feed-image-content {
   border: 1px solid #ccc;
}

.feed-item a {
    display: inline-block;
    text-decoration: none;
    border: none;
}

@media (max-width: 768px) {
    .feed-item img {
     max-width: 100px;
     cursor: pointer;
    }
}

.rating-and-comment {
    display: flex; /* Arrange stars and comment box horizontally */
    align-items: center; /* Align items vertically centered */
    margin-left: -20px;
    margin-top: 10px;
    padding-top: 10px;
}

/* Style for the stars */
.star-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.star-rating img {
    width: 15px; /* Adjust the size of the stars */
    height: 15px; /* Keep it square for a uniform look */
    margin: 0, 0;
    cursor: pointer;
}

/* Style for the comment box and submit button */
.comment-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.comment-input {
    flex: 1;
    min-width: 300px; /* Adjust width as needed */
    margin-left: 10px;
    margin-right: 2px;
    padding-left: 5px;
    padding-top: 2px;
    padding-bottom: 2px;
}


/* I don't think this section is used */
.comment-box button {
    margin-left: 5px;
    padding: 5px 10px;
    cursor: pointer;
    border: 2px solid transparent;
    border: 4px;
}
/* end of I don't think this section is used*/

.comment-submit {
    padding: 4px 8px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    background-color: var(--button-color)
}

.comment-submit:hover {
    background-color: var(--button-hover-color);
    transition: all 0.3s ease;
}

.comments-section {
    text-align: left;
    margin-left: 20px;
    margin-top: 0;
}

.existing-comments {
    max-height: 500px;
    overflow-y: auto;
}

.each-existing-comment {
    line-height: 1;
    margin-left: 20px;
    margin-bottom: 0;
    margin-top: 0;
    background: #202020;
}

.image-block {
    height: 250px;
    border: 2px solid #ccc;
}

.side-feed-content {
   border-top: 1px solid #fffb00;
   height: 800px;
}

.activity-feed-content {
    height: 800px;
}

.image-content {
    margin-top: 0;
    margin-bottom: 0;
}

.image-content p {
    margin-top: 2px;
    margin-bottom: 2px;
}

.image-content a {
    margin-top: 0;
    margin-bottom: 0;
}

.image-content img {
    margin-top: 0;
    margin-bottom: 0;
}

.image-content-header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    text-align: left;
}

.uploaed-by {
    margin-right: auto;
    font-size: 0.9em;
}

.uploaded-by a {
    color: var(--url-color);
    text-decoration: underline;
}


.post-title {
    text-align: center;
    margin: 0 auto;
    font-weight: bold;
}
