/* === LINKS === */
a:hover,
a:focus {
  color: #0165B3;
  text-decoration: none;
}

/* === FORM CONTROLS === */
.form-control {
  color: #444;
  border: 1px solid #aaa;
}

/* Placeholder */
.form-control::-moz-placeholder,
.form-control:-moz-placeholder,
.form-control:-ms-input-placeholder,
.form-control::-ms-input-placeholder,
.form-control::-webkit-input-placeholder {
  color: #0165B3;
}

/* === TABELLE === */
/* Intestazione tabelle .table-bordered */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  background-color: #ed8323; /* arancione */
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Corpo tabelle .table-bordered */
.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > td,
.table-bordered > tfoot > tr > th {
  background-color: #069BEC; /* blu */
  color: #fff;
}

/* Righe alterne nelle tabelle striped */
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #2772B0; /* blu scuro */
  color: #fff;
}

/* === PULSANTI .btn-default === */
.btn-default {
  color: #333;
  background-color: #ebebeb;
  border-color: #adadad;
}
.btn-default:hover,
.btn-default:focus {
  background-color: #ffffff;
  border-color: #cccccc;
}

/* === NAVIGAZIONE (.nav) === */
.nav > li > a {
  border: 1px solid #2772B0; /* bordo blu */
}
.nav > li > a:hover,
.nav > li > a:focus {
  background-color: #eeeeee;
  color: #0165B3;
}

/* === LARGHEZZA CONTAINER === */
@media (min-width: 1200px) {
  .container {
    width: 90%;
  }
}

.progress {
  background-color: #ddd;
}