@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600');

body {
  font-family: 'Open Sans', sans-serif;
}

@media (min-width: 768px) {
  .container {
    max-width: 730px;
  }
}

.header {
  border-bottom: 1px solid #e5e5e5;
  margin: 1.5rem 0;
  padding-bottom: 1rem;
}

.jumbotron {
	padding: 1rem;
	margin-bottom: 1.5rem;
	background-color: rgba(var(--bs-light-rgb));
	border-radius: var(--bs-border-radius-lg);
}

.nav-pills .nav-link.active, .btn-primary {
    background-color: #337ab7;
    border-color: #337ab7;
}

.btn-info {
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.btn-info, .btn-info:hover, .btn-info:active, .btn-info:focus {
	color: #fff;
}

.icon {
	font-size: 1.5rem;
}

.icon.bi-exclamation-triangle {
  color: orange;
}

.icon.bi-check-lg {
  color: green;
}

.icon.bi-dash {
  color: gray;
}

.icon.bi-x {
  color: red;
}

table.assert {
  border-collapse: initial;
}

.relaxNg {
  color: red;
  font-weight: bold;
  white-space: pre-line;
}

svrl\:text {
  margin-top: 1ex;
}

svrl\:failed-assert svrl\:text {
  color: red;
    font-weight: bold;
    display: list-item;
    margin-inline-start: 40px;
}

svrl\:failed-assert[role="[WARNING]"] svrl\:text {
  color: orange;
}

.modal-dialog {
	max-width: 80%;
}

.modal-body {
  height: calc(100vh - 200px);
  overflow: auto;
}
  
@media print {

  .modal {
    opacity: 1 !important;
    display: block !important;
    position: static;
    page-break-before: always;
    }
    
  .modal-dialog {
    transform: none !important;
    -webkit-transform: none !important;
    width: 100% !important;
  }
  
  .modal-content {
    border: none;
  }
  
  .modal-body {
    height: auto;
  }
  
  .modal-footer {
    display: none;
  }
  
  button, nav, .no-print {
    display: none !important;
  }
  
}