body {
  background:#f4f6fa;
  font-family:Segoe UI;
  padding-top:60px;
}

/* HEADER */
.cover {
  background:linear-gradient(135deg,#0b3d91,#102e6a);
  color:white;
  padding:20px;
  text-align:center;
  border-radius:50px;
}

.subtitle {
  font-size:14px;
  letter-spacing:1px;
  margin-top:8px;
  opacity:0.9;
}

/* SEARCH */
.search-box {
  display:flex;
  justify-content:center;
  margin-top:-30px;
  margin-bottom:20px;
}

.search-box input {
  max-width:500px;
  width:100%;
}

/* TABLE */
.table-responsive {
  overflow-x:auto;
}

.table td:nth-child(2) div {
  white-space: nowrap;
}

/* BUTTON */
.btn-blue-custom {
  background-color:#0b3d91;
  color:white;
  border:none;
}

.btn-blue-custom:hover {
  background:#082d6b;
  color:white;
}

/* FOOTER */
footer {
  background:#0b3d91;
  color:white;
  padding:15px;
  margin-top:40px;
  text-align:center;
}

/* MOBILE */
@media(max-width:768px){
  .cover{
    border-radius:25px;
    padding:15px;
  }
}