body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header {
    background-color: #1da1f2;
    color: white;
    padding: 20px;
    text-align: center;
}

.user-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.profile-pic {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 15px;
}

.thought-input {
    padding: 20px;
    background-color: #f9f9f9;
}

textarea {
    width: 100%;
    height: 100px;
    resize: none;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.input-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

#postThought {
    background-color: #1da1f2;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
}

.thoughts-list {
    padding: 20px;
}

.thought {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.thought-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 0.8em;
    color: #657786;
}

.thought-actions button {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 10px;
}