/* Forum Container */
#posts {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Forum Header */
h1 {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #333;
}

/* Login Status */
#login-status {
    text-align: center;
    margin: 10px 0;
    font-size: 16px;
    color: #555;
}

/* Create Post Form */
#create-post {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

#create-post textarea {
    width: 100%;
    max-width: 600px;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

#create-post button {
    padding: 10px 20px;
    background-color: #0073e6;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#create-post button:hover {
    background-color: #005bb5;
}

/* Post */
.post {
    padding: 15px;
    margin-bottom: 20px;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

.post .content {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
}

.post .likes {
    font-size: 14px;
    color: #666;
}

.post .likes button {
    margin-left: 10px;
    padding: 5px 10px;
    background-color: #0073e6;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.post .likes button:hover {
    background-color: #005bb5;
}

