html { 
  /*background: url(bg.jpg) no-repeat center center fixed; */
  background-color:#0a3264;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

body {
  margin-bottom: 80px;
}

.user_disabled {
    color: #ff4444;
    background-color: #ffaaaa;
    /*font-style: italic;*/
    /*text-decoration: line-through;*/
}

input[type=button], input[type=submit] {
    background-color: #f9ac21;
    border: none;
    color: black;
    padding: 8px;
    margin: 4px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    opacity: 1;
    font-size: 14px;
}

input[type=submit].delete {
    background-color: #bd242a;
    border: none;
    color: white;
    padding: 8px;
    margin: 4px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    opacity: 1;
    font-size: 14px;
}

input[type=button]:hover, input[type=submit]:hover {opacity: 0.8}

p.error_msg {
  color: #ff8800;
}

p.success_msg {
  color: #11BB11;
}

.searchbox {
    padding: 15px;
    font-size: 14px;
}

div.topbar{
    display: flex;
    flex-wrap: wrap;
    background-color: #2d4bb2;
    padding: 5px;
}

.tt-dropdown-menu {
    background-color: #f1f1f1;
    color: #000;
    width: 100%;
}

div.dashbox {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
}

div.inner-dashbox {
    margin: 10px;
    padding: 10px;
    height: 80px;
    text-align: center;
}

.dashbox img {
    width: 50px;
    filter: invert(1);
}

img.invert {
    filter: invert(1);
}

.section-heading {
    background-color: #2d4bb2;
    padding: 10px;
}

div.pagetab {
    padding: 10px;
    display: inline-block;
}

div.chpFile {
    width: 70%;
    display: inline-block;
    margin-top: auto;
    padding: 8px;
}

div.chpCommLog {
    width: 25%;
    min-height: 400px;
    display: block;
    position: absolute;
    top: 250px;
    right: 10px;
    bottom: 70px;
    padding: 8px;
    border: solid 1px;
}

div.commLog {
    height: calc(100% - 240px);
    overflow: auto;
}

.vl {
  border-left: 6px solid #2d4bb2;
}

div.footer {
    padding-bottom: 10px;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    text-align: center;
    background-color: #0a3264;
}

table {
  border-collapse: collapse;
}

td, th {
    padding: 8px;
}

 .nowrap td, .nowrap th {
    white-space: normal;
    padding: 5px;
  }
  
 .nowrap th {
    writing-mode: vertical-lr;
    white-space: normal;
  }