/* Banner Image */
.mybanner {
 min-width: auto;
  
}

/* Menu */

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

/* Text should now be blue */
.container-header .mod-menu {
justify-content: center;
color: 3c6fae;
padding: 0;

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

/* On hover there should be a gray background*/
.container-header .mod-menu a:hover {
    background-color: white;
}

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


.grid-child {
    padding: 3px 15px;
    background-color: white;
}

.footer {
    background-color: white;
    background-image: none;
}


/* Numaratoare automata */

.css-autonumber {
  counter-reset: rowNumber;  /* Set the serial number counter to 0 */
  font-size: 12pt; font-family: 'Times New Roman';
  cellspacing="0";
  cellpadding="3";
  border="1";
   }
  
.css-autonumber tr:not(:first-child) td:first-child::before {
  counter-increment: rowNumber;  /*Increment the serial number counter */
  content: counter(rowNumber) ".";  /* Display the counter */
} 

.css-autonumber tr:nth-child(even) {
  background: rgb(204,204,204);
}

.css-autonumber tr:nth-child(odd) {
  background: #FFF;
} 

table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}

