/* Menu */

/* tylko menu a nie cały nagłówek */
#your_tag.mod-list li a {
    color: black;
    font-size: 0.8rem;
    font-weight: bold;
//border-bottom: 6px solid red;
//cursor:pointer;
}

/* Override the lila background with white */
.container-header {
    background-color: white;
    background-image: none;
}

/* Text should now be blue */
.container-header .mod-menu {
    color: black;
    background-color: lightgrey;
    //background-color: grey;
    justify-content: left;
    padding: 0;
}

/* We add padding and radius so that on hover there is a nice background */
.container-header .mod-menu a {
    -webkit-border-radius: 0px 0px 0px 0px;
    -moz-border-radius: 0px 0px 0px 0px;
    border-radius: 0px 0px 0px 0px; 
    padding: 2px 0px;
    color: #0088cc;
}

/* On hover there should be a gray background - tło przyciisku*/
.container-header .mod-menu a:hover {
    //background-color: #c9558f;
    background-color: #eee;
    //border-bottom: 6px solid red;
}

/* We need to change the color of the Hamburger Menu because white on white is not good */
.container-header .navbar-toggler {
    color: lightgrey;
    //border: 1px solid grey;
    border: 3px solid black;
}

/* kolor strzałki */
.metismenu.mod-menu .metismenu-item > span, .metismenu.mod-menu .metismenu-item > a, .metismenu.mod-menu .metismenu-item > button {
	//color: white;
    color: #c9558f;
    //background-color: red;
}    

/* ramki wewnątrz tabelek */
thead, tbody, tfoot, tr, td, th {
    border-width: 1px;
  }