@charset "UTF-8";
/* CSS Document */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  color: rgb(23, 50, 160);
  font-size: 12px;
  background: #42413C url(/images/layout/Allawah-Underground.jpg) no-repeat center center fixed;
    /* Prevent the image from repeating */
    background-repeat: no-repeat;

    /* Stretch the image to cover the entire viewport */
    background-size: cover;
  
    /* Center the image */
    background-position: center;
  
    /* Ensure the background image covers the entire page */
    margin: 0;
    padding: 0;
    height: 100vh; /* Viewport height */
}

/* Link styles */
a:link, a:visited {
  color: white;
  text-decoration: none; /* Assuming you want no underline for links */
}

a:hover {
  color: #e6c639; /* Dark gray on hover for visibility */
  text-decoration: underline; /* Underline on hover for interaction feedback */
}

/* General form styles - modified for darker, nearly opaque background */
form {
  background: rgba(17, 17, 17, 0.9); /* Darker and nearly opaque */
  width: 600px;
  max-width: 100%;            /* hardened-2026-05-26: never overflow viewport */
  margin: 30px auto;
  border-radius: 0.4em;
  border: 1px solid #191919;
  overflow: hidden;
  position: relative;
  display: inline-block;
}


form h1 {
  font-size: 18px;
  text-shadow: 0 1px 0 black;
  text-align: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0,0,0,1);
  position: relative;
}

form h1:after {
  content: "";
  display: block;
  width: 250px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 50px;
  pointer-events: none;
  transform: rotate(70deg);
}

/* Form elements */
label {
  color: #666;
  display: block;
  padding-bottom: 9px;
}



label[for="remember"] {
  color: white;
  display: inline-block;
  padding-bottom: 0;
  padding-top: 5px;
}

input[type="checkbox"] {
  display: inline-block;
  vertical-align: top;
}

.p-container {
  padding: 0 20px 20px 20px;
}

.p-container:after {
  clear: both;
  display: table;
  content: "";
}

.p-container span {
  display: block;
  float: left;
  color: #0d93ff;
  padding-top: 8px;
}

input[type="submit"] {
  padding: 5px 20px;
  border: 1px solid rgba(0,0,0,0.4);
  text-shadow: 0 -1px 0 rgba(0,0,0,0.4);
  box-shadow: 
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 10px 10px rgba(255,255,255,0.1);
  border-radius: 0.3em;
  background: #0184ff;
  color: white;
  float: right;
  font-weight: bold;
  cursor: pointer;
  font-size: 13px;
}

input[type="submit"]:hover {
  box-shadow: 
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -10px 10px rgba(255,255,255,0.1);
}

input[type="text"]:hover,
input[type="password"]:hover,
label:hover ~ input[type="text"],
label:hover ~ input[type="password"] {
  background: #AFAFAF;
}

/* Table styles - modified for darker, nearly opaque background */
table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 20px;
  background: rgba(34, 34, 34, 0.9); /* Darker and nearly opaque */
}

th, td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

th {
  background-color: rgba(86, 86, 86, 0.7); /* Darker header */
}

table th:last-child, table td:last-child {
  width: 70px;
  padding: 0;
}

/* New CSS for table header row */
table thead th, table tr:first-child th {
  background-color: rgba(86, 86, 86, 0.7); /* Darker header for first row or thead */
  color: white;
}

/* Button styles */
button {
  color: white;
  overflow: hidden;
  background: none;
  background-image: none;
}

form button {
  width: 100px;
}

table button {
  width: 100%;
  padding: 4px;
  box-shadow: none;
  border: none;
  position: relative;
  z-index: 1;
}

button:hover img {
  transform: scale(1.05);
}

/* Specific form classes */
.specialIBform {
  width: 100px;
}

.right-aligned-form {
  text-align: right;
}

.right-align {
  text-align: right;
  display: inline-block;
}

/* Column width classes */
.min-width-column {
  width: 12.5%;
  padding-left: 1em;
}

.med-width-column {
  width: 15%;
  padding-left: 1em;
}

.large-width-column {
  width: 20%;
  padding-left: 1em;
}

/* Image styles */
img {
  max-width: min(360px, 100%); /* hardened-2026-05-26: shrink below 360px on narrow viewports */
  max-height: 360px;
  float: left;
  margin-right: 20px;
}

/* Target all table data cells */
table td {
  color: #4169E1; /* Royal Blue */
}

/* Optionally, if you want headers to remain white or another color */
table th {
  color: white; /* or any other color you prefer for headers */
}