/************************************************
*                                               *
* CSS fixes after update from bootstrap 8 to 9  *
*                                               *   
************************************************/


/* top navbar */
.navbar > .row > * {
 	flex-shrink: 1;
	padding-left: 0;
	padding-right: 0;
}

.navbar > .row {
	margin-left: -15px;
	margin-right: -15px;
	flex-wrap: nowrap;
}

/* card collumns */

.card-columns {
  column-count: 3;
  column-gap: 1.25rem;
}

.card-columns .card {
  display: inline-block;
  width: 100%;
  margin-bottom: 1.25rem;
  break-inside: avoid;
}

@media (max-width: 991px) {
  .card-columns {
    column-count: 2;
  }
}

@media (max-width: 575px) {
  .card-columns {
    column-count: 1;
  }
}

/* no underline for a tags */
a{
	text-decoration: none;
}

a:hover{ 
	text-decoration: underline;
}

.btn:hover{
	text-decoration: none;
}


.breadcrumb {
  --bs-breadcrumb-bg: #e9ecef;
  --bs-breadcrumb-padding-y:0.75rem;
  --bs-breadcrumb-padding-x: 1rem;
  --bs-breadcrumb-margin-bottom: 1rem;
  --bs-breadcrumb-border-radius: 0.25rem
}

.btn-block {
  display: block;
  width: 100%;
}


.atcb-link {
	font-style: italic;
}

.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.text-right {
	text-align: right;
}

.form-group {
	margin-bottom: 1rem;;
}

.form-control {
	font-weight: inherit;
}

.form-inline {
	display: flex;
	align-items: center;
}

@media (min-width: 576px) {
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}


.table > :not(caption)  th {
  background-color: rgba(0, 0, 0, 0.51);
}

.table  th, .table td {
	padding: 0.75rem;
}

.table-responsive {
	  display: block;
}

.table-borderless tbody + tbody, .table-borderless td, .table-borderless th, .table-borderless thead th {
  border: 0;
}

.table .thead-dark th {
  color: #fff;
  background-color: #212529;
  border-color: #32383e;
}

.card-body p {
  line-height: 0;
}

.table> tbody {
  vertical-align: middle;
}