main{
    display: flex;
    justify-content: center;
}

.content-social{
    width: 600px;
    padding: 0 20px;
}

#user{
    font-size: 12px;
    color: #fff;
    text-align: left;
    margin: 0 0 10px 0;
    justify-content: left;
}

#user figure{
    width: 36px;
    height: 36px;
}

#user a{
    color: #ffc71c;
    font-size: 12px;
}

textarea{
    text-align: left;
}

.post-box {
    width: 100%;
    background: white;
    border-radius: 10px;
    padding: 15px 15px 0 15px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.post-header {
    margin-bottom: 10px;
}

.post-input {
    flex: 1; /* Faz a textarea ocupar todo o espaço restante */
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: #f0f2f5;
    font-size: 16px;
    outline: none;
    resize: none;
    height: 80px;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #ddd;
    margin-top: 10px;
}

.post-actions button {
    border: none;
    cursor: pointer;
    color: #333;
    font-weight: bold;
    display: flex;
    align-items: center;
    font-size: 14px;
    background: none;
}

.post-actions button:hover {
    color: #fff;
}

.post-button {
    padding: 5px 15px;
    border: none;
    border-radius: 20px;
    background: #ffc71c !important;
    color: fff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.post-button:hover {
    background: #333 !important;
}

#fileInput {
    display: none;
}

.fa-image{
    width: 35px;
    padding: 10px 0;
    border-radius: 75px;
    background: #ffc71c;
}

.fa-image:hover{
    background: #333 !important;
}

#removeImage{
    display: none; 
    position: absolute; 
    top: 5px; 
    right: 5px; 
    background: rgba(0, 0, 0, 0.5); 
    color: white; 
    border: none; 
    cursor: pointer;
    border-radius: 75px;
    padding: 10px 13px;
}

#removeImage:hover{
    background: #000; 
}

.post-av{
    width: 32px;
    height: 32px;
    border-radius: 75px;
}

.post-av, .data{
    display: inline-block;    
    vertical-align: middle;
}

.data{
    padding: 0 5px;
}

.silver{
    color: #aaa;
    font-size: 12px;
}

.post-menu{
    padding: 20px 0;
}

.post{
    width: 100%;
    text-align: left;
    padding: 20px;
    background: #222;
    border-radius: 10px;
    margin: 0 0 20px 0;
}

.img-container{
    width: 100%;
    image-rendering: pixelated;
}

.conteudo{
    padding: 10px 0 20px 0;
    width: 100%;
}

.interaction{
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.interaction.fa-regular, .interaction.fa-solid {
    color: #ffc71c;
    padding: 0 5px;
}

.fa-heart{
    cursor: pointer;
    margin: 0 5px 0 0;
}

.delete-btn {
    cursor: pointer;
    color: red;
    margin-left: 10px;
}
.delete-btn i {
    pointer-events: none;
}

.post-filter{
    color: #333;
    text-decoration: none;
}

.ativo{
    color: #ffc71c;
}

.post {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}