/* Currently only used in batch-update form for timesheets, to highlight sections of combined fields */
form .box-body fieldset {
    border-radius: $box-border-radius;
    padding: 10px;
    &:hover {
        background-color: $highlight-bg;
    }
}

/* To be used with .form-horizontal - to reduce the space between rows, eg. used in the search modals */
form.form-narrow {
    .form-group {
        margin: 0 0 5px 0;
    }
}