.report-where-container{
    display: flex;
    flex-direction: column;
    padding: .2rem;
    border: .2rem solid var(--bg-secondary-active-color);
    border-radius: var(--border-radius);
}
.report-where-container #WhereLabel{
    font-size: 1.1rem;
    font-weight: bold;
}
.report-where-item{
    display: grid;
    grid-template-columns: repeat(4, 1fr) .2fr;
    justify-items: center;
    gap: .3rem;
    padding: .3rem;
}

#ReportQueueContainer #Email{
    width: 20rem;
}
#ReportQueueContainer #Description{
    width: 30rem;
}
#WhereItemHeader{
    display: none;
}

#WhereDeleteButton{
    margin: 0;
}

@media (max-width: 767.98px) {
    
    #WhereHeaders{
        display: none;
    }
    #WhereItemHeader{
        display: block;
        padding-right: 4px;
    }
    
    .report-where-container{
        display: flex;
        flex-direction: column;
        padding: .2rem;
        gap: .3rem;
        border: 0 solid transparent;
    }
    .report-where-container #WhereLabel{
        font-size: 1.1rem;
        font-weight: bold;
    }
    .report-where-item{
        display: flex;
        flex-direction: column; 
        justify-content: center;
        gap: .3rem;
        padding: .3rem;
        border: .2rem solid var(--bg-secondary-active-color);
        border-radius: var(--border-radius);
    }
    
}