html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  color: #555;
  --color-primary: #ff4767;
  
}

.breadcrumb-item a {
    text-decoration: none;
}

.app-nav {
    background-color: #fff;
    padding: 16px 0;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
}

.app-name {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--color-primary);
    display: block;
    text-decoration: none;
}

.main-wrapper {
  background-color: #fff;
  min-height: 100%;
  padding-top: 16px;
}

.main-wrapper p {
  margin-bottom: 12px;
}

@media screen and (min-width: 992px) {
    body {
        background-color: #f9f9f9;
    }
    .main-wrapper {
        padding: 24px;
        margin-top: 24px;
    }
}