#report-panel, #reports-browse-panel{
    position: absolute;
    right: 0;
    top: 60px;
    background: var(--color-nav);
    z-index: 9999;
    border-radius: 10px;
    min-width: 250px;
    min-height: 300px;
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.541);
    padding: 16px;
    font-family: unset;
    font-size: 14px
}

.report-field{
    display: flex;
    align-items: center;
    gap: 10px;
}

.report-field input[type="text"]{
    margin-left: auto;
    border-radius: 4px;
    padding: 3px;
    font-size: 15px;
    text-transform: uppercase;;
}
.report-field button{
    margin-left: auto;
    border: 1px solid white;
    padding: 3px;
}

.report-field.smoke{
    align-items: center;
    gap: 15px;
}

.report-field.smoke > label{
    display: flex;
    align-items: center;
    gap: 4px;
}
.report-field.smoke > label:first-child{
    min-width: 80px;
}

.report-field input[type="checkbox"]{
    margin-right: auto;
}

.report-field.notes{
    flex-direction: column;
    align-items: stretch;
}

.report-field.notes{
    display: flex;
    flex-direction: column;
}
.report-top-buttons, .report-buttons{
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 10px 0;
}

.report-body{
    min-height: 250px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.report-textarea{
    height: 100px;
    border-radius: 4px;
    padding: 4px;
}

.close-panel-button{
    width: 60px;
}
#report-panel button{
    padding: 6px;
}

#sidebar-reports-button{
    opacity: 0.4;
}
#sidebar-reports-button.hasEntries{
    opacity: 1;
}



.report-navigation-div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}