/*
* CSS file for BV Library plugin
*
* @author      Robert W. Drummond <rwdrummond@cox.net
* @license     https://opensource.org/licenses/MIT MIT License
* @copyright   Cottage Community of Bradford Village 2019, subject to the MIT license.
*
* @version:     1.0.0
*/

/*******************************
* LIBRARY RESULTS TABLE STYLES *
********************************/
.libTable table {
  border-collapse: collapse;
  border: 1px solid;
  border-color: black;
}

.libTable thead,
.libTable thead tr,
.libTable thead tr th,
.libTable tbody tr,
.libTable tbody tr td,
.libTable th,
.libTable tr,
.libTable td
{
  border: 1px solid;
  border-color: black;
}
.libTable thead tr th:last-child
{
  border-right: 1px solid;
  border-color: black;
}

.libTable thead tr,
.libTable thead tr th
{
  background-color: #eaead3; /* On MBV1.0: #def0ec; */
}

.libTable tbody tr .checkouts,
.libTable tbody tr .assignments,
.libTable tbody tr .checkout_days,
.libTable tbody tr .utilization,
.libTable tbody tr .id,
.libTable tbody tr .period_checkouts
{
  text-align:right;
}

.inline {
  display:inline;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.center {
  width: 100%;
  text-align: center;
}

.pad-left {
  padding-left: 10px;
}

.pad-left-large {
  padding-left: 40px;
}

.pad-top {
  padding-top: 20px;
}

.volume-info {
  display:inline-block;
  vertical-align:top;
}
/*****************
*  Screen styles *
******************/

@media screen {
  .no-screen,
  .hidden-screen {
    display:none !important;
  }
}

/******************
 *  Print styles  *
 ******************/
@media print {

  /* Do not print the footer or any no-print items */
  .no-print,
  .btn-group,
  .entry-footer {
    display: none !important;
  }

  /* Avoid page breaks inside this item */
  .no-break {
      page-break-inside: avoid;
  }

  /* Do not display values of hyperlinks, which Bootstrap does by default */
  a[href]:after {
    content:none !important;
  }

  /* Do not display the site footer */
  #footer-area {
    display: none;
  }

  /* Do not print alert messages (e.g. Message of the Day notices) */
  div.alert {
    display: none !important;
  }
}