/******************************************************************************
 * Copyright (c) 2019 SURVICE Engineering Company.
 * The U.S. Government has government purpose rights to this software and
 * associated documentation per DFARS 252.227-7014 and DFARS 252.227-7013.  No
 * redistribution without express written permission.
 *
 * WARNING - This document contains technical data whose export is restricted
 * by the Arms Export Control Act (Title 22, U.S.C., Sec 2751, et seq.) or the
 * Export Administration Act of 1979 (Title 50, U.S.C., App. 2401 et seq.), as
 * amended. Violations of these export laws are subject to severe criminal
 * penalties. Disseminate in accordance with provisions of DoD Directive
 * 5230.25.
 ******************************************************************************
 * NAME: styles.css
 *
 * REVISION DATE: 1/20/2021
 *
 * AUTHORS: Jonathan Worobey
 *          Troy Sadler
 *
 * DESCRIPTION: Styles for the resupply site.
******************************************************************************/

body {
  /*background-image: url(media/ULS-A-Logo-final.png);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40%;*/
  background-color: #0e1529;
  font-family: Georgia;
}

table#results_table {
  font-family: "Lucida Console", Monaco, monospace;
  border:none;
  border-collapse: collapse;
  table-layout: auto;
  width: 100%;
}

table#results_table tbody:nth-child(odd) {
  background:rgba(224,255,255,0.25);
}

table#results_table th {
  padding: 0.5em;
  white-space: nowrap;
}

table#results_table td {
  padding: 0.5em;
  text-align: right;
  white-space: nowrap;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}

table#results_table td:first-child {
  border-left: none;
}

table#results_table td:last-child {
  border-right: none;
}

.leftJustifyCol {
  text-align: left;
}

.srsCol {
  text-align: center;
}

#wrapperdiv {
  text-align:center;
  font-family: "Lucida Console", Monaco, monospace;
}

#formdiv {
  background:rgba(255,255,255,0.35);
  display:inline-block;
}

#submitbutton {
  margin: 0 auto;
}

#survicepic {
  width: 10%;
  height:auto;
  position: fixed;
  bottom: 0px;
  right: 0px;
  padding: 1%;
  pointer-events: none;
}

.button, #email, #password {
  font-family: "Lucida Console", Monaco, monospace;
  display:inline-block;
  padding:0.2em 1.45em;
  margin:0.1em;
  border:0.15em solid #CCCCCC;
  box-sizing: border-box;
  text-decoration:none;
  font-weight:400;
  color:#000000;
  background-color:#CCCCCC;
  text-align:center;
  position:relative;
}

.button:disabled {
  border:0.15em solid #aaa;
  color:#555;
  background-color:#aaa;
}

.button:hover:enabled{
  box-shadow: 0 6px 8px 0 rgba(0,0,0,0.24), 0 8px 25px 0 rgba(0,0,0,0.19);
}

input[type=email] {
  width: 25%;
}