/* Bootstrap styling */
body {
  background: white;
  color: #333333;
  margin-top: 5rem;
}

h1, h2, h3, h4, h5, h6 {
  color: #444444;
}

ul {
  margin: 0;
}

.bg-steel {
  background-color: #003865;
}

.site-header .navbar-nav .nav-link:hover {
  color: white;
}

.site-header .navbar-nav .nav-link.active {
  font-weight: 500;
}

.content-section {
  background: white;
  padding: 10px 20px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  margin-bottom: 20px;
}

/* Styling for forms */
.container-form {
  border-style: solid;
  border-radius: 15px;
  padding: 20px;
  width: 60%;
}

input[type=file]{
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=submit] {
  background-color: #003865;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
  margin-top: 6px;
}

label[class="filename"] {
  padding: 12px 12px 12px 0;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
}

.col-40 {
  float: left;
  width: 40%;
  margin-top: 6px;
}

.col-60 {
  float: left;
  width: 60%;
  margin-top: 6px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}

/* Result styling */
dt[class='title'] {
    font-size: 23px;
}

dd[class='data'] {
    margin-bottom: 0px;
    font-size: 18px;
}

.container-result {
  margin-left: 10px;
}
