body.login{
    background-color: #2C2D35;
}

img {
    max-width: 100%;
    max-height: 100%;
}

.header {
    width: 400px;
    min-width: 30%;
    max-width: 90%;
    margin: 50px auto 0px;
    color: white;
    background:white;
    text-align: center;
    border-bottom: none;
    border-radius: 10px 10px 0px 0px;
    padding: 20px;
}

.table-header {
    width: 80%;
    margin: 50px auto 0px;
    color: white;
    background:#FF6633;
    text-align: center;
    border: 1px solid #FF6633;
    border-bottom: none;
    border-radius: 10px 10px 0px 0px;
    padding: 20px;
}

.index-header {
    width: 50%;
    margin: 50px auto 0px;
    color: white;
    background:#FF6633;
    text-align: center;
    border: 1px solid #FF6633;
    border-bottom: none;
    border-radius: 10px 10px 0px 0px;
    padding: 20px;
}

form.login {
    width: 400px;
    min-width: 30%;
    max-width: 90%;
    margin: 0px auto;
    padding: 20px;
    background: white;
    border-radius: 0px 0px 10px 10px;
}

.query-form{
    margin-top: 15px;
    margin-bottom: 15px;
    margin: auto;
    width: 90%;
}

.index-content {
    width: 50%;
    margin: 0px auto;
    padding: 20px;
    border: 1px solid #FF6633;
    background: white;
    border-radius: 0px 0px 10px 10px;
}


/*
TABLE
*/

.table-content {
    width: 80%;
    margin: 0px auto;
    padding: 20px;
    border: 1px solid #FF6633;
    background: white;
    border-radius: 0px 0px 10px 10px;
}

table {
    margin-top: 20px;
    table-layout: auto;
    width: 100%;
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid black;
    padding: 10px;
}

.ticket-row{
    cursor: pointer;
}

tr.ticket-row:hover{
    color: #FF6633;
}

td.cutoff { 
    white-space:nowrap;
    overflow: hidden; 
    width: 200px; 
}

td.blank-cell {
    border-top: none;
    border-bottom: none;
}

td.above-blank-cell {
    border-bottom: none;
}

td.total-name-cell {
    font-weight: bold;
    border-right: none;
}

td.total-empty-cell{
    border-left: none;
    border-right: none;
}




/*
INPUT
*/

.input-group{
    margin: 10px 10px 10px 10px;
    align-content: center;
}
.input-group label{
    margin: 3px;
    display: block;
    text-align: left;
    color: #8e8e8e;
    font-size: small;
}
.input-group input{
    height: 30px;
    width: 93%;
    padding: 5px 5px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #BCBCBC;
}

.export{
    position: relative;
}

.error{
    width: 92%;
    margin: 0px auto;
    padding: 10px;
    border: 1px solid #e36663;
    color: #e36663;
    background: #f2dede;
    border-radius: 5px;
    text-align: left;
}
.success {
    color: #6dc76f;
    background: #e7f1e3;
    border: 1px solid #6dc76f;
    margin-bottom: 20px;
}
.selection{
    width: 100%;
    border-radius: 0px;
}

.report-categories{
    margin: auto;
    max-width: 500px;
}

.btn-expand{
    width: 100%;
    display: block;
    text-align: center;
}

.btn-primary{
    background-color: #FF6633;
    border-color: #fa551e;
}

.btn-primary:hover{
    background-color: #f14d17;
    border-color: #ee430f;
}

.sidenav {
    height: 100%; /* Full-height: remove this if you want "auto" height */
    width: 215px; /* Set the width of the sidebar */
    position: fixed; /* Fixed Sidebar (stay in place on scroll) */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: #2C2D35;
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 20px;
  }
  
  /* The navigation menu links */
  .sidenav a {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
  }
  
  /* When you mouse over the navigation links, change their color */
  .sidenav a:hover {
    color: #f1f1f1;
  }

  .sidenav a.selected{
      color: #FFE0B2;
  }
  
  /* Style page content */
.main {
    margin-left: 215px; /* Same as the width of the sidebar */
    padding: 30px 30px 0px 30px;
    background: white;
  }

.saved-container{
    border-radius: 15px;
    background-color: #eeeeee;
    padding: 22px;
}


.draggable{
    cursor: move;
    padding: 5px;
}

.draggable.dragging{
    opacity: 0.5;
}

a.template{
    font-size: 25px;
}