#content-related .module h2 {
    background: #eee url(../img/nav-bg.gif) bottom left repeat-x;
    color: #666;
}

/* here starts overriding standard admin base.css from django */
/* hack stylizing the Upload xlsx label */
#datafile {
    width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
/* end hack */

#datafile-label:hover{
    background-color: #5b80b2;
    cursor: pointer;
}

/* make the label have the same style as 'a' links django style */
#datafile-label {
    border-radius: 15px;
}

#datafile-label{
    display: block;
    float: left;
    color: #fff;
    padding: .2em 10px;
    background: #999;
}

/* admin style for sortting buttons in the columns.
 * In the admin base css, this style is only applied
 * for sorted colunns.
 * Here we also display a delete icons for every columns in
 * the sortoptions div.
 * As such we apply sortoptions style for all columns to have the
 * delete icons well display for each columns.
 */
.sortoptions {
    display: block;
    padding: 4px 5px 0 5px;
    float: right;
    text-align: right;
}

table th:not(:first-child) .text{
    padding-right:42px;
}
/* end same style */
