/*

<div class="rnet">
    <div class="post">
        <div class="posttop">
            <img class="profile" src="../media/profile-pics/[TODO].png">
            <p class="username">[TODO]</p>
        </div>
        <img class="wideimg" src="../media/test.png">
        <div class="postbottom">
            <p class="content">[TODO]</p>
        </div>
    </div>
</div>

*/

body {
    margin: 0;
}

.rnet {
    background-color: rgb(78, 98, 120);
    padding: 10px;
    margin-bottom: 25px;
    margin-top: 25px;
}

.posttop {
    padding: 25px;
    padding-bottom: 45px;
    border-radius: 10px 10px 0px 0px;
}

.postbottom {
    padding: 25px;
    padding-top: 0px;
    border-radius: 0px 0px 10px 10px;
}

.post, .dms {
    max-width: 500px;
    background-color: white;
    margin: auto;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0px 1.5px 5px rgba(0, 0, 0, 0.2);
    /* x y blur color */
}

.dms {
    padding: 25px;
}

.rnet .profile {
    width: 30px;
    height: 30px;
    float: left;
    cursor: pointer;
}

.rnet .username {
    float: left;

    margin-top: 5px;
    font-weight: bold;
    color: rgb(78, 98, 120);
    cursor: pointer;

    margin-right: 10px;
    margin-left: 10px;
}

.rnet .username:hover {
    text-decoration: underline;
}

.rnet .username-inline {
    font-weight: bold;
    color: rgb(163, 118, 84);
    cursor: pointer;    
}

.rnet .orange {
    color: rgb(163, 118, 84);
}

.rnet .blue {
    color: rgb(78, 98, 120);
}

.rnet .username-inline:hover {
    text-decoration: underline;
}

.rnet .dmstext {
    font-weight: bold;
    font-style: italic;
    cursor:default;
}

.clear {
    clear: both;
    width: 100%;
    height: 0px;
}

.dms .right, .dms .left {
    width: 80%;
    border-bottom: 1px solid rgb(217, 217, 217);
}

.dms .right img {
    float: right;
}

.dms .right {
    float: right;
}

.dms .right .username {
    float: right;
}

.rnet .content {
    clear: both;
}

.rnet .right, .rnet .left {
    margin-bottom: 40px;
}

.dms .response {
    cursor: text;
    border: 1px solid rgba(78, 98, 120, 0.5);
    background-color: rgba(78, 98, 120, 0.1);
    height: 50px;
    width: 80%;
    float: right;
    color: rgba(78, 98, 120, 0.5);
}

.dms .responseinside {
    padding: 0px 15px;
}

.wideimg {
    width: 100%;
}

.group .usernames {
    float: left;

    margin-top: -10px;
    font-weight: bold;
    
    border: 1px solid gray;
    border-color: white white gray gray;
    padding: 5px;
}

.group .grouppfp {
    width: 30px;
    height: 30px;
    float: left;
    cursor: pointer;
    margin-top: 10px;
    margin-right: 5px;
}

.group .grouptext {
    float: left;
    margin-right: 10px;
}