
.postbox {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    border: 2px solid white;
    box-sizing: border-box;
    border-top: none;
    background: rgba(35, 35, 35);
}

.media-divider {
    width: 100%;
    height: 10px;
}

.video-ui-container {
    width: calc(100% - 20px);
    margin: 0 auto;
    position: relative;
}

.video-container {
    width: 100%;
    display: block;
    background: rgba(35, 35, 35);
}

.volume-button {
    position: absolute;
    bottom: 5px;
    right: 5px;
    z-index: 100;

    width: 20px;
    background: rgb(35,35,35);
    border-radius: 50%;
    padding: 5px;
}

.img-container {
    width: calc(100% - 20px);
    margin: 0 auto;
    object-fit: contain;
    display: block;
    background: rgba(35, 35, 35,0.5);
}

.text-container {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 1rem;
    font-weight: normal;
    overflow-wrap: break-word;
    color: white;
    text-align: left;
    width: calc(100% - 20px);
    margin: 0 auto;
    box-sizing: border-box;
}

.author-tag {
    width: 100%;
    height: 40px;
    border: none;
    border-top: 2px solid white;
    background: none;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
}

.author-timestamp {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 1rem;
    font-weight: normal;
    color: rgb(153, 153, 153);

    position: absolute;
    right: 10px;
}

.author-name {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    border: none;
    background: none;
    padding: 0;
}

.author-pfp {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-left: 10px;
}

.group-name {
    display: flex;
    gap: 0;
    border-top: 2px solid white;
    padding: 10px;
}

.group-name-in {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 1rem;
    font-weight: normal;
    color: white;
    white-space: break-spaces;/*stop white space from being ignored*/
}

.group-name-color {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 1rem;
    font-weight: bold;
}

.lower-bar {
    display: flex;
    width: calc(100% - 20px);
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
    gap: 20px;
}

.lower-cont {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lower-button {
    height: 25px;
}

.lower-num {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 1rem;
    font-weight: normal;
    color: rgb(135, 135, 135);
}

.react-menu {
    background: rgb(35, 35, 35);
    border-top: 2px solid white;
    height: fit-content;
    padding: 5px;
    box-sizing: border-box;
}

.emoji-button {
    display: inline-flex;
    width: 9.125%;
    padding: 0;
    margin-left: 3%;

    align-items: center;
    justify-content: center;
    font-size: 25px;
    background: none;
    border: none;
    border-radius: 10px;
}

.emoji-replace {
    height: 25px;
    font-size: 25px;
    margin-top: -12.5px;
    margin-right: -5px;
    margin-left: -5px;
}

.replies-box {
    background: rgba(35, 35, 35);
    border-top: 2px solid white;
    max-height: 400px;
    overflow-y: scroll;
    position: relative;
}

.replies-message-cont {
    width: 100%;
    overflow: scroll;
    scrollbar-width: none;
}

.replies-bottom-sticky {
    position: sticky;
    margin-top: 9px;

    left: 4px;
    bottom: 4px;
    width: 99%;
    background: rgba(35, 35, 35);
}

.replies-message-input {
    background: rgb(100,100,100);
    border: none;
    outline: none;
    width: calc(99% - 40.5px);
    max-height: 200px;
    overflow-y: scroll;
    margin-left: 40.5px;

    font-size: 1rem;
    font-family: "Helvetica Neue", sans-serif;
    color: white;
    padding: 9.5px;
    padding-right: 40px;
    box-sizing: border-box;
    border-radius: 15px;

    user-select: text;
    overflow-wrap: break-word;
}

.replies-message-input:empty::before {
    content: "Message";
    color: rgb(40,40,40);
    font-family: "Helvetica Neue", sans-serif;
}/*placeholder*/
