
body {
  background-color: ffffff;
}

.user {
  float: right;
  color: white;
  padding: 14px 16px;
}

.errore {
  font-size: 2em;
  color: red;
  background: yellow;
}

.grande {
  font-size: 2em;
}

/*
#corpo {
  text-align: center;
}
*/

/*
td {
  text-align: left;
}
*/

.right {
  text-align: right;
  margin-right: 1em;
}

.left {
  text-align: left;
  margin-left: 1em;
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #417690;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
/*  color: #000000; */
/*  text-align: center; */
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Il pulsante home in alto a sinistra */
.active {
  background-color: #aaffaa;
  color: #000;
}

.active:hover {
  background-color: #black;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
  color: yellow;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
  font-size: 17px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* I bottoni del sottomenù nella topnav, quando sono puntati dal mouse */
.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #79aec8;
  color: yellow;
}

/* Gli elementi del menù dropdown */
.dropdown-content a:hover {
  background-color: #79aec8;
  color: black;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
  display: block;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

.evidenzia {
    color: red;
    background-color: yellow;
    font-size: 2em;
    text-align: justify;
}

.annullato {
    color: red;
    background-color: yellow;
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 601px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

/* Personalizzo da qui */
.btn {
  display: inline-block;
  font-weight: 400;
  color: #000;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1;
  border-radius: 0.1875rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary {
  color: #fff;
  background-color: #4d83ff;
  border-color: #4d83ff;
}

.btn-primary:hover {
  color: #fff;
  background-color: #2768ff;
  border-color: #1a5fff;
}

.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(104, 150, 255, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #4d83ff;
  border-color: #4d83ff;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #1a5fff;
  border-color: #0d57ff;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(104, 150, 255, 0.5);
}

.btn.btn-rounded {
  border-radius: 50px;
}

.btn-danger {
  color: #fff;
  background-color: #ff4747;
  border-color: #ff4747;
}

.btn-danger:hover {
  color: #fff;
  background-color: #ff2121;
  border-color: #ff1414;
}

.btn-danger:focus, .btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 99, 99, 0.5);
}

.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #ff4747;
  border-color: #ff4747;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #ff1414;
  border-color: #ff0707;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 99, 99, 0.5);
}

.btn-warning, .btn-warning:hover {
  box-shadow: 0 2px 2px 0 rgba(255, 193, 0, 0.14), 0 3px 1px -2px rgba(255, 193, 0, 0.2), 0 1px 5px 0 rgba(255, 193, 0, 0.12);
}

.btn-warning {
  color: #212529;
  background-color: #ffc100;
  border-color: #ffc100;
}

.btn-warning:hover {
  color: #212529;
  background-color: #d9a400;
  border-color: #cc9a00;
}

.btn-warning:focus, .btn-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 6, 0.5);
}

.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc100;
  border-color: #ffc100;
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #cc9a00;
  border-color: #bf9100;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 6, 0.5);
}

#restore {
  width: 600px;
  text-align: justify;
}