.user-options-overlay {
    /*position: fixed;*/
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*width: 100%;
    height: 100%;*/
    background-color: rgba(0, 0, 0, 0.69);
    z-index: 999;
}

.block-confirmation-overlay, .report-confirmation-overlay, .message-report-overlay {
    /*position: fixed;*/
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*width: 100%;
    height: 100%;*/
    background-color: rgba(0, 0, 0, 0.69);
    z-index: 1001;
}

.user-options-popup {
    /*position: fixed;*/
    position: absolute;
    z-index: 1000;
    background-color: black;
    /*margin-left: 32.5%;
    margin-right: 32.5%;*/
    text-align: center;
    /*width: 35%;*/
    border: 1px solid rgb(5, 255, 65);
    border-radius: 5px;

    left: 50%;
    width: 50%;
    transform: translateX(-50%);
    top: 30%;
}

.block-confirmation-box, .report-confirmation-box {
    /*position: fixed;*/
    position: absolute;
    margin-left: 10%;
    margin-right: 10%;
    text-align: center;
    width: calc(80% - 40px);
    background-color: black;
    padding: 20px;
    border: 1px solid rgb(5, 255, 65);
    border-radius: 5px;
    z-index: 1002;
    top: 20%;
}

#confirm-block, #cancel-block, #confirm-report, #cancel-report {
    height: 30px;
    border-radius: 5px;
    background-color: grey;
    color: white;
    border: none;
}

#report-reason {
    font-size: 12px;
	background-color: rgb(19, 19, 19);
	width: 90%;
	margin: 5px;
	color: aliceblue;
	margin-bottom: 0;
    resize: none;
}

#report-label {
	margin: 0px;
}

#char-counter {
	text-align: right;
    font-size: 12px;
    color: white;
}

/*
.message-report-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.69);
    z-index: 1001;
}
*/

.message-report-box {
    /*position: fixed;*/
    position: absolute;
    background-color: black;
    padding: 10px;
    border: 1px solid rgb(5, 255, 65);
    border-radius: 5px;
    z-index: 1002;
    width: calc(40% - 20px);
    margin-left: 30%;
    margin-right: 30%;
    text-align: center;
    top: 35%;
}

#report-message-label {
	margin: 0px;
	margin-bottom: 5px;
}

#confirm-message-report, #cancel-message-report {
    height: 25px;
    border-radius: 5px;
    border: none;
}

#confirm-message-report, #confirm-block {
	background-color: rgb(5, 255, 65);
	color: black;
}

#cancel-message-report {
	background-color: grey;
	color: white;
}

.user-option {
    padding-top: 10px;
    padding-bottom: 10px;
}

.user-option:hover {
	cursor: pointer;
    background-color: rgb(19, 19, 19);
    border-radius: 5px;
}


#confirm-block:hover, #confirm-report:hover, #confirm-message-report:hover {
	cursor: pointer;
    /*background-color: rgb(5, 255, 65);*/
}


#cancel-block:hover, #cancel-report:hover, #cancel-message-report:hover {
	cursor: pointer;
    background-color: rgb(94, 92, 92);
}

.message.received:hover {
    cursor: pointer;
}

.sender:hover {
    cursor: pointer;
}

@media only screen and (max-width: 600px) {
    #report-reason {
        font-size: 16px;
    }
}