@CHARSET "UTF-8";


select {
	min-width:70px;
}

.logo img {
	max-width:100%;
	
}

.box-muted {
	
    box-shadow: none;
    left: 5px;
    width: 98%;
}

.box-muted .box-header {
	display:none;
}

.box-muted .box-body {
	padding:0;
}

/* Keep list action dropdowns above adjacent controls and avoid clipping. */
.sonata-ba-list td.sonata-ba-list-field-actions,
.sonata-ba-list td.sonata-ba-list-field-_action {
	overflow: visible;
}

.sonata-ba-list td.sonata-ba-list-field-actions .btn-group.open,
.sonata-ba-list td.sonata-ba-list-field-_action .btn-group.open {
	position: relative;
	z-index: 1060;
}

/*
 * Sonata renders the per-row action dropdowns (Provs / Downloads) inside
 * .box-body.table-responsive. Bootstrap sets overflow-x:auto there (at every
 * width in this build), and per the CSS spec a non-visible overflow-x forces
 * overflow-y to compute as auto too -> the dropdown on the last row is trapped
 * inside a scroll area (you get a scrollbar) instead of overlaying the footer.
 * overflow-y:visible alone is ignored for the same reason, so force BOTH axes
 * visible. Unconditional + !important so it wins regardless of viewport width
 * (e.g. an embedded/narrow browser) and source order. Sonata already reserves
 * window space below single-page lists, and the .btn-group.open z-index rule
 * above keeps the open menu stacked over the footer toolbar.
 */
.box-body.table-responsive {
	overflow: visible !important;
}
