body{
    margin: 0 !important;
    color: #212529;
}

/*estrutura da pagina*/
.comunidade{
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
}               

.container-noscroll{
    height: 100vh;
    overflow: hidden;
}

/*usuários da comunidade*/
.comunidade__usuarios{
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 40px 0 0 40px;
}

.comunidade__usuarios-header{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comunidade__usuarios-header span{
    font-size: 1.4rem;
    font-weight: 600;
}

.comunidade__usuarios-header button{
    border: none;
    border-radius: 10px;
    padding: 10px;
    background-color: #FF66C4;
    color: white;
    font-weight: 600;
}

.comunidade__usuarios a{
    text-decoration: none;
    color: #212529;
}

.perfil-comunidade{
    display: flex;
    justify-content: space-between;
}

.perfil-comunidade figure{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 !important;
}

.perfil-comunidade figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.perfil-comunidade button{
    border: none;
    background: transparent;
    color: #e141a4;
    font-weight: 600;
}

.perfil-comunidade__dados{
    display: flex;
    align-items: center;
    gap: 20px;
}

.perfil-comunidade__nome{
    display: flex;
    flex-direction: column;
}

.perfil-comunidade__dados figure img{
    cursor: pointer;
}

.perfil-comunidade__nome span:nth-child(1){
    font-weight: 600;
    font-size: 1rem;
}

.perfil-comunidade__nome span:nth-child(2){
    font-size: 0.8rem;
    color: #676767df;
}


/*postagens da comunidade*/
.comunidade__postagens{
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 85vh;
    overflow-y: auto;
    padding: 40px 0;
}

.postagens__categorias{
    display: flex;
    gap: 20px;
}

.comunidade__postagens h2:nth-child(1){
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 !important;
}

.postagens__categorias span{
    padding: 5px 10px;
    font-size: 1rem;

    border: 2px solid #FF66C4;
    color: #FF66C4;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
}

.postagens__categorias span:nth-child(1){
    background-color: #FF66C4;
    color: white;
}

.comunidade__post{
    padding: 30px;
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    cursor: pointer;
}

.post-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-header img{
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.post-header button{
    border: none;
    background-color: #FF66C4;
    color: #ffffff;
    padding: 5px 20px;
    font-weight: 600;
    border-radius: 20px;
    font-size: 1rem;
}

.perfil-post a{
    text-decoration: none;
    display: flex;
    gap: 15px;
    align-items: center;
    cursor: pointer;
    color: #212529;
}

.perfil-post__nome{
    display: flex;
    flex-direction: column;
}

.perfil-post__nome .temp{
    font-size: 0.8rem;
    font-weight: 600;
}

.perfil-post__nome div span i{
    font-size: 0.5rem;
}

.perfil-post__nome #comunidade{
    font-size: 1rem;
    font-weight: 600;
}

.perfil-post__nome .user{
    font-size: 0.8rem;
    color: #676767df;
}

.perfil-config{
    display: flex;
    align-items: center;
    gap: 10px;
}

.pontinhos-post{
    position: relative;
    cursor: pointer;
    color: #e141a4;
}

.pontinhos-list ul{
    display: none;
    flex-direction: column;
    list-style: none;
    margin: 0 !important;
    padding: 15px !important;
    box-shadow: 0px 0px 10px 1px #c1c1c1a1;
    border-radius: 8px;
    gap: 8px;
    position: absolute;
    background-color: white; 
}

.pontinhos-list ul li{
    font-size: 0.8rem;
}

.post-corpo{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.post-corpo p{
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 !important;
}

.post-corpo h2{
    font-size: 1.6rem;
    margin: 0 !important;
}

.post-opcoes{
    display: flex;
    gap: 10px;
}

.post-like, .post-save{
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #e141a4;
}

.post-save{
    font-size: 1.4rem;
}

.todas-comunidades{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* .camera{
    width: 70px;
    height: 70px;
    margin: 0;
    border-radius: 50%;
    border: 2px solid #7f8c8d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
} */

.camera i{
    font-size: 40px;
}


    /* MODO DARK  */
    body.dark{
        margin: 0 !important;
        color: #ffffff;
    }

    .comunidade__usuarios.dark{
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 40px 0 0 40px;
        background-color: #2d2d2d;
    }

    .comunidade__usuarios-header button.dark {
        border: none;
        border-radius: 10px;
        padding: 10px;
        background-color: #FF66C4;
        color: rgb(0, 0, 0);
        font-weight: 600;
    }

    .comunidade__usuarios-header span.dark {
        font-size: 1.4rem;
        font-weight: 600;
        color: white;
    }

    .comunidade__postagens.dark {
        display: flex;
        flex-direction: column;
        gap: 30px;
        height: 85vh;
        overflow-y: auto;
        padding: 40px 0;
        background-color: #2d2d2d;
    }

    .comunidade__post.dark {
        padding: 30px;
        width: 80%;
        display: flex;
        flex-direction: column;
        gap: 25px;
        cursor: pointer;
        background-color: #3E3E40;
        color: white;
    }

    .perfil-post__nome #comunidade.dark {
        font-size: 1rem;
        font-weight: 600;
        color: white;
    }

    .perfil-post__nome .user.dark {
        font-size: 0.8rem;
        color: white;
    }

    .modal-content.dark {
        background-color: #000000;
        padding: 25px 60px;
        border-radius: 8px;
        width: 50% !important;
        text-align: center;
        box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
        margin: 0 auto;
    }

    p.dark {
        margin-top: 0;
        margin-bottom: 1rem;
        color: #000000;
    }