/*-- Enter your custom CSS below --*/
.featured-title {
    font-size: 45px;
    letter-spacing: -1px;
    margin: 0;
    padding-top: 40px;
    text-align: center;
}
.widget-wrapper {
    background-color: #F9F9F9;
    border: 1px solid #E5E5E5;
    border-radius: 4px 4px 4px 4px;
    height: 220px;
    margin: 0 0 20px;
    padding: 20px;
}
.info_bg {
    display: none;
}
.judge-button-wrapper {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.judge-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1E73BE;
  color: #ffffff;
  padding: 14px 24px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  text-align: center;
  transition: background-color 0.25s ease;
}

.judge-button:hover,
.judge-button:focus {
  background-color: #333333;
  color: #ffffff;
}

@media (max-width: 767px) {
  .judge-button-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .judge-button {
    width: 100%;
  }
}