/* PAGE */

.report-master-page{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    padding-top:8px;
}

/* FILTER CARD */

.report-master-filter-card{
    width:335px;
    height:48px;
    border:1px solid #7f8b97;
    background:#00bcd41c;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;

    padding:8px 12px;
    box-sizing:border-box;
}

/* LABEL */

.report-master-label{
    font-size:14px;
    color:#111;
    white-space:nowrap;
}

.report-master-label span{
    color:#d60000;
}

/* SELECT */

.report-master-select{
    width:145px;
    height:30px;

    border:1px solid #cfcfcf;
    border-radius:6px;

    background:white;
    color:#222;

    font-size:14px;
    padding:0 10px;
    outline:none;
}

/* BUTTON GROUP */

.report-master-btn-group{
    margin-top:22px;

    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
}

/* BUTTON */

.report-master-btn{
    width:84px;
    height:38px;

    border:none;
    border-radius:6px;

    background:#f4bc00;
    color:#000;

    font-size:14px;
    font-weight:400;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
}

.report-master-btn:hover{
    background:#e5ae00;
}

.report-master-btn i{
    font-size:14px;
}