/* load the default Redmine stylesheet */
@import url(../../../stylesheets/application.css); 

/* add a logo in the header */
#header {
    background: #628DB6 url(../images/logo_office_min.png) no-repeat 2px;
    padding-left: 86px;
    /* test */
}

/* move the project menu to the right */
#main-menu { 
    left: 86px;
    right: 0px; 
}

div.scrum-content {
    overflow-x: auto !important;
    max-height: 600px;
}

/*
Override scrum plugin table borders
*/
table.sprint-board tr.sprint-board td.sprint-board {
    border: 1px solid #e4e4e4 !important;
}

table.sprint-board tr.sprint-board th.sprint-board {
    border-bottom: 1px solid #e4e4e4 !important;
}
/*
Add background color to pbi column
*/
tr.sprint-board td.sprint-board:nth-child(2) {
    background-color: #C9E0F7;
}
/*
Sticky scrum table head
*/
thead.sprint-board th:not(:first-child) {
    position: sticky;
    top: 0;
    background-color: #C9E0F7;
    z-index: 100;
}