/* General Container Styles */
.sporati-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
}

/* New Post Form */
.sporati-new-post {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.sporati-new-post textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    resize: none;
    font-size: 16px;
}

.sporati-new-post select {
    margin-top: 10px;
    padding: 5px;
    font-size: 14px;
}

.sporati-new-post button {
    display: inline-block;
    margin-top: 10px;
    background-color: #1da1f2;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.sporati-new-post button:hover {
    background-color: #0d95e8;
}

/* Posts Feed */
.sporati-posts-feed {
    margin-top: 20px;
}

/* Individual Post Styles */
.sporati-post {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.sporati-post-header {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.sporati-post-content {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.sporati-post-footer {
    display: flex;
    justify-content: space-around;
}

.sporati-post-footer button {
    background: none;
    border: none;
    color: #1da1f2;
    font-size: 14px;
    cursor: pointer;
}

.sporati-post-footer button:hover {
    text-decoration: underline;
}

/* Media Queries for Mobile */
@media screen and (max-width: 768px) {
    .sporati-container {
        padding: 10px;
    }

    .sporati-post-footer {
        flex-direction: column;
    }

    .sporati-post-footer button {
        margin-bottom: 5px;
    }
}