﻿

button.nav-link {
  color: #000000;
  font-weight: bold;
}

.nav-link:hover {
  font-weight: bolder;
}

.card-header .btn-link {
  width: 100%;
  text-align: left;
}

button.nav-link > span.caret {
  cursor: pointer;
  user-select: none; /* Prevent text selection */
  font-family: none;
}

button.nav-link > span.caret::before {
  content: "\25B6";
  color: black;
  display: inline-block;
  margin-right: 6px;
}

button.nav-link[aria-expanded="true"] > span.caret::before {
  transform: rotate(90deg);
}

.back-drop {
  opacity: 0.6;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: gray;
  z-index: 1000;
  padding-top: 150px;
}

.header {
  display: flex;
  vertical-align: middle;
  align-items: center;
  padding-left: 10px;
}

.status-container {
  padding:4px;
}

#preferences-button {
  display: none;
}

@media only screen and (min-height: 300px) {
  #preferences-button {
    display: inherit;
  }
}



  @media only screen and (max-width: 767px),(pointer:none), (pointer:coarse) {
    .nav-column {
      width: 100%;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      overflow: auto;
    }

    .statement-column {
      display: none;
    }

    .card-header {
      padding-top: 0px;
      padding-bottom: 0px;
    }
  }


  @media only screen and (min-width: 768px) {
    .nav-column {
      width: 200px;
      max-width: 200px;
      overflow-y: auto;
      float: left;
      height: 100%;
    }

    .statement-column {
      float: right;
      width: calc(100vw - 200px);
      height: 100%;
    }
  }

  #confirmation-section {
    position: absolute;
    bottom: 0;
    height: 100px;
    left: 0;
    right: 0;
    padding: 8px;
  }

  #cancelled-section {
    padding: 10px;
  }
