@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f6f8;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 700px;
    margin: auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #1da1f2;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 25px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    border-color: #1da1f2;
    outline: none;
}

button {
    padding: 12px 18px;
    background-color: #1da1f2;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0d95e8;
}

.post {
    margin-top: 20px;
    padding: 20px;
    background: #f5f8fa;
    border-radius: 10px;
    border-left: 5px solid #1da1f2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comments {
    margin-top: 15px;
}

.comment-input {
    margin-top: 10px;
    display: flex;
}

.comment-input input {
    flex: 1;
    margin-right: 5px;
    border-radius: 25px;
}

.comment {
    margin-top: 8px;
    padding: 10px;
    background: #ffffff;
    border-radius: 4px;
    border-left: 3px solid #1da1f2;
}

.post-image {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}

.emoji-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    margin-right: 5px;
}

.icon-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #1da1f2;
}

.icon-button:hover {
    color: #0d95e8;
}

.comment-action-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-action-buttons button {
    margin-right: 10px;
}

.timestamp {
    font-size: 0.9em;
    color: #657786;
}

.user {
    font-weight: bold;
    color: #1da1f2;
}

/* Media Query for Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 2em;
    }

    button {
        width: 100%;
    }
}
