/* Form */

.report_container .whitebox {
    margin: 0;
    box-sizing: border-box;
}

.report_container_creationForm {
    align-items: center;
}

.report_container_creationForm h1 {
    text-align: center;
}

.redirect_previous {
    text-align: center;
    opacity: 0.45;
}


@media only screen and (max-width: 799px) {
    .report_container_creationForm {
        margin: 0;
        padding: 2em;
    }
    .report_form_container {
        width: 100%;
    }
    .report_container_creationForm .whitebox {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 2px;
    }
    .report_container_creationForm form .button {
        margin: 1em;
    }
}


@media only screen and (max-width: 499px) {
    .report_container_creationForm {
        padding: 5px;
    }
    .report_container_creationForm h1 {
        font-size: 1.5em;
        margin: 1px;
    }
    .report_container_creationForm .form_container form textarea { /* overrides default form behaviour */
        min-width: 1em;
        max-width: 100%;
    }
    .report_container_creationForm .form_container form > div > div { /* overrides default form behaviour */
        flex-direction: column;
        margin: 2em 2px;
    }
}
@media only screen and (max-width: 299px) {
    .report_container_creationForm {
        padding: 2px;
    }
    .report_container_creationForm h1 {
        font-size: 1em;
    }
    .report_container_creationForm .whitebox {
    }
}





















/* List */
td.date span {font-size: 15px; color: black;}

.report_counts {
    display: flex;
    gap: 0.8em;
    align-items: center;
    flex-wrap: wrap;
}

.report_counts .cell {
    display: flex;
    align-items: center;
    gap: 0.5em;
    background-color: rgba(0,0,0,0.03);
    border-radius: 5px;
    padding: 0.15em 0.8em 0.15em 0.7em;
    width: fit-content;
}

.report_counts .statusCount {
    font-size: 2em;
}

.report_counts .statusLabel {
    font-size: 0.9em;
}

@media (max-width: 499px) {
    td.title, td.date, th.title, th.date {
        display: none;
    }
}








/* report detail */
.report_container {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    align-items: center;
    flex-direction: column;
    gap: 2em;
}
.report_container > div {
    max-width: 60em;
}
.reportDetail {
    display: flex;
    gap: 0.5em;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
}

.reportDetail .row {
    display: flex;
    gap: 1em;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.reportDetail .row .label {
    font-weight: bold;
    font-size: 1.1em;
    width: 7.5em;
    text-align: right;
    flex-shrink: 0;
    flex-wrap: nowrap;
}

.reportDetail .row .value {
    font-size: 1.1em;
    max-width: 50em;
    flex-grow: 1;
}

.reportDetail .row.description {
    background-color: rgba(66, 139, 202, 0.05);
    border-radius: 10px;
    padding: 1em 0;
}

.reportDetail .spacer {
    display: none;
}

.reportDetail .row.date .value {
    display: flex;
    gap: 1.5em;
}

.delete_report_container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.delete_report {
    display: flex;
    align-items: center;
    gap: 0.6em;
    width: fit-content;
    margin: 0;
}

.delete_report i {
    margin: 0;
    width: 0.8em;
    font-size: 1em;
    opacity: 0.5;
}

.delete_report:hover {
    color: #FFF;
    background-color: firebrick;
}




.report_container_actions {
    display: flex;
    gap: 2em;
}


.arscribe_sender .description {
    opacity: 0.75;
}
.arscribe_sender .text_preview .title {

}
.arscribe_sender .text_preview {
    font-size: 0.9em;
    padding: 1em;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(0, 0, 0, 0.01);
    font-family: monospace;
}

.arscribe_button:not(.disabled) {
    background: rgb(21,116,109);
    background: linear-gradient(14deg, rgb(26, 140, 132) 19%, rgb(26, 182, 157) 51%, rgb(31, 212, 177) 86%);
}
.arscribe_button:hover:not(.disabled) {
    background: rgb(21,116,109);
    background: linear-gradient(14deg, rgb(21, 112, 106) 19%, rgb(22, 154, 133) 51%, rgb(23, 165, 138) 86%);
}
.arscribe_button.disabled {
    background: rgb(62, 123, 119);
    background: linear-gradient(14deg, rgb(74, 120, 117) 19%, rgb(95, 157, 147) 51%, rgb(105, 168, 156) 86%);
    opacity: 0.5;
    cursor: not-allowed;
}
.arscribe_button i {
    margin: 0 0.5em 0 0;
    font-size: 1.3em;
}


.reportSend {
    min-width: 25em;
    max-width: 25em;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.reportSend .dev_section {
    padding: 0;
}

.reportSend .dev_section textarea {
    width: 100%;
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    min-height: 6em;
    max-height: 30em;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-family: Roboto, sans-serif;
    padding: 6px;
    margin: 0;
}

.reportSend .dev_section .button {
    margin: 0 0 1em 0;
}

.reportSend .infos {
    display: flex;
    gap: 0.5em;
    align-items: center;
}
.reportSend .infos i {font-size: 1.5em;}
.reportSend .fa-circle-check {color: #08ba08;}
.reportSend .fa-circle-xmark {color: #db2d16;}
.reportSend .fa-circle-bookmark {color: #e07c14;}
.reportSend .infos.green {
    background-color: rgb(223, 255, 221);
    border: 3px solid rgb(185, 233, 183);
}
.reportSend .infos.red {
    background-color: rgb(255, 225, 225);
    border: 3px solid rgb(244, 195, 195);
}
.reportSend .infos.orange {
    background-color: rgb(253, 234, 219);
    border: 3px solid rgb(241, 215, 187);
}

.reportSend form .errors{
    margin: 0;
}
.reportSend form #report_edit_dev div.column_mode {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


@media (max-width: 599px) {
    .report_container {
        flex-wrap: wrap;
        gap: 1.5em;
    }
    .reportDetail {
        gap: 0.8em;
        padding: 1em 0.2em 1em 0.8em;
        margin: 3px;
        width: 100%;
    }
    .reportSend {
        width: 100%;
        min-width: 5em;
        max-width: 100%;
        padding: 0;
        margin: 0;
        gap: 1.5em;
    }

    .reportSend .whitebox {
        margin: 0;
        padding: 0.75em;
    }

    .report_container_actions {
        flex-wrap: wrap;
    }
}


@media (max-width: 899px) {
    .reportDetail .row {
        flex-direction: column;
    }
    .reportDetail .row .label {
        text-align: left;
        width: 100%;
        font-size: 1.4em;
    }
    .reportDetail .row .value {
        width: 100%;
        font-size: 1em;
    }
    .reportDetail .row {
        gap: 0.2em;
    }
    .reportDetail .spacer {
        display: inline-block;
        border-bottom: 2px solid rgba(0, 0, 0, 0.05);
        transform: scale(1.15);
    }
}

























/* my own reports (list) */

.report_self_list .list {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
}
.report_self_list .list .item {
    flex-grow: 1;
    max-width: 25em;
}

.report_self_list .list .item .title {
    font-size: 1.1em;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.report_self_list .list .item .spacer {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    overflow: hidden;
    margin: 0.6em 0;
}

.report_self_list .list .item .infos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.report_self_list .list .item .infos span {
    white-space: nowrap;
    margin: 0 0.5em;
}

.report_self_list .list .item .actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.report_self_list .list .item .actions .button {
    margin: 0;
}











