.export_report_form {
    display: flex;
    flex-direction: column;
    grid-gap: 30px;
}
.export_report_form .btns {
    display: flex;
    grid-gap: 15px;
}
.export_report_form button, .upload_report_file_form button {
    width: fit-content;
}
.upload_report_file_form .upload_block {
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 2px dashed rgb(200, 200, 200);
    border-radius: 10px;
    padding: 40px;
    cursor: pointer;
    transition: all 0.3s;
    row-gap: 10px;
}
.upload_report_file_form .upload_block:hover {
    border-color: rgb(75, 175, 75);
    background-color: rgb(248, 248, 248);
}
.unique_usage_period {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    margin-top: -5px;
}
.unique_usage_period span {
    font: 16px Inter;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.7);
    padding: 2px 6px;
    background-color: rgb(242, 242, 242);
    border-radius: 4px;
}