﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a, .text-link {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  padding-bottom: 60px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}


/* Custom Styling
-------------------------------------------------- */

body {
  height: 100vh;
  /* background-color: #4a81be; */
}

.main-container {
  box-sizing: border-box;
  height: calc(100% - 60px);
  max-height: calc(100% - 60px);
}

main {
  height:100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Make recipient box look like form */
#selected-recipients {
  font-size: 0.8rem;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  margin-left:0.5rem;
  padding: 0.375rem 0.75rem;
}

.td-member {
  max-width: 150px !important;
}

/* Collapse Indicator */
.card-header i {
  transition: .3s transform ease-in-out;
}
.card-header.collapsed i {
  transform: rotate(-90deg);
}

/* Extendable Buttons */
.extend > span {
  max-width: 0px;
  display: inline-flex;
  white-space: nowrap;
  transition: max-width 0.5s, padding-right 0.45s; /* Transition width and padding to avoid "popping" */
  overflow: hidden;
}

.extend:hover > span, .extend:focus > span {
  max-width: 150px; /* how far the text can expand, adjust based on content */
}


/* Scrolling for dropdown */
.vert-scroll{
  max-height: 500px;
  overflow-y: auto;
}

/* Sticky patient header info */
.sticky-header{
  position: sticky;
  top:0;
  z-index: 2;
}

/* ===== Test Login Scrollbar CSS ===== */
  /* Firefox */
  .test-login {
    overflow-x: auto;
    scrollbar-width: auto;
    scrollbar-color: #4ebaca #ffffff;
  }

  /* Chrome, Edge, and Safari */
  .test-login::-webkit-scrollbar {
    width: 5px;
    height: 10px;
  }

  .test-login::-webkit-scrollbar-track {
    background: #ffffff;
  }

  .test-login::-webkit-scrollbar-thumb {
    background-color: #4ebaca;
    border-radius: 10px;
    border: 2px outset #75cbd7;
  }