body {
  font-size: 13px;
}

.page-header {
  margin-top: 20px;
}

.navbar-brand > img {
  display: inline;
}

h1 {
    font-size: 1.5em;
}

h2 {
    font-size: 1.1em;
}

table {
    font-size: 1em;
}

th[data-sort]{
  cursor:pointer;
}

.hiddenRow {
  padding: 0 !important;
}

table.link-bare td a {
    display: block;
    width: 100%;
    color: #666;
}

table.link-bare td a:hover {
    display: block;
    color: #111;
}

@font-face {
    font-family: 'UbuntuMono';
    src: url('/fonts/UbuntuMono-R.ttf')  format('truetype')
}

.code-text {
    font-family: 'UbuntuMono';
    background-color: #eee;
    padding-left: 25px;
}

/* Progress meter */

.progress-meter .background {
  fill: #ccc;
}

.progress-meter .foreground {
  fill: #000;
}

.progress-meter text {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
}

div[class="tooltip-inner"] {
  max-width: 350px;
}

.navbar-form > input {
  margin-top: 17px;
}

.inline {
  display: inline !important;
}

.navbar-form input {
  border: 1px inset;
}

.navbar .nav > li > a {
  padding-top: 25px;
}

.navbar-right {
  border: none;
  background: transparent;
  padding-bottom: 5px;
  margin-right: 5px;
}

.navbar-tiny > li > a {
  padding-top: 0px !important;
  padding-bottom: 5px;
}

.navbar-nav>li>a,.navbar-nav>li>a:hover {
    padding-bottom: 0px;
  }

.modal-static {
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    margin-top: -75px;
    margin-left: -75px;
    overflow: visible !important;
}
.modal-static,
.modal-static .modal-dialog,
.modal-static .modal-content {
    width: 150px;
    height: 150px;
}
.modal-static .modal-dialog,
.modal-static .modal-content {
    padding: 0 !important;
    margin: 0 !important;
}
.modal-static .modal-content .icon {
}

.spaced-h {
  padding-left: 0.25em;
  padding-right: 0.25em;
}

.bs-example {
 margin: 10px 0 0 0;
}

#main-header {
  width:100%;
}

#body-content {
  width:100%;
  padding-left:5px;
  padding-right:5px;
}

/* backported from another version of bootstrap */
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

.table > thead > tr > th {
  background-color: #fafafa;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}

.center-table {
  float: none !important;
  margin: 0 auto;
  display: table !important;
}

.center-inline-block {
  display: inline-block !important;
}

.table {
  display: table;
  table-layout: auto;
  border-bottom: 1px solid grey;
  border-right: 1px solid grey;
}

.table .table-row {
  display: table-row;
  padding: 0.1em;
  margin: 0;
}

.table .header .table-cell {
  font-weight: bold;
}

.table .table-cell {
  display: table-cell;
  padding: 0.1em;
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-collapse: collapse;
}


/* Be responsive when the screen size is small */
@media only screen and (max-width: 768px) {
  /* Make the navbar collapse tightly */
  .navbar .nav > li > a {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .navbar-right {
    padding-left: 15px;
  }

  .navbar .nav {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  /* Force table to not be like tables anymore */
  .table .table-cell,
  #table-flow table,
  #table-flow thead,
  #table-flow tbody,
  #table-flow th,
  #table-flow td,
  #table-flow tr {
    display: block;
  }

  .table {
    border: none;
    table-layout: auto;
    display: unset;
  }

	/* Hide table headers (but not display: none;, for accessibility) */
  .table .table-row.header,
	#table-flow thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}

  #table-flow tr { border: 1px solid #ccc; }

  .table .table-cell,
	#table-flow td {
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee;
		position: relative;
		padding-left: 25%;
		white-space: normal;
		text-align:left;
	}

  .table .table-cell:before,
	#table-flow td:before {
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 25%;
		padding-right: 10px;
		white-space: nowrap;
		text-align:left;
		font-weight: bold;
	}

  /* Label the data */
	#table-flow td:before { content: attr(data-title); }
  .table .table-cell:before { content: attr(data-title); }

  .table .table-row {
    display: block;
    border-top: 1px solid gray;
  }
}

/* Render a .table / .table-row / .table-cell construct as a set of cards */
.card-stack {
  table-display: auto;
  display: unset;
}

.card-stack.table .table-row {
  display: block;
  border-top: 1px solid gray;
}

.card-stack.table .table-row.header {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.card-stack.table .table-cell:before {
  /* Now like a table header */
  position: absolute;
  /* Top/left values mimic padding */
  top: 6px;
  left: 6px;
  width: 25%;
  padding-right: 10px;
  white-space: nowrap;
  text-align:left;
  font-weight: bold;
  content: attr(data-title);
}

.card-stack.table .table-cell {
  display: block;
  border: none;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 25%;
  min-height: 2em;
  white-space: normal;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
 }

 .copy-job-btn {
  border: none;
  background: transparent;
  float: right;
}
