/* Color styling to give us some flavor. */
.modal-header, .modal-footer {
    background-color: #FCE7F3;
}

nav#hibiscus-nav {
    background-color: #F7DAEA !important;
}

/* Styling for project display */
h2#proj-clientName {
   font-size: 1.8em;
   font-style: italic;
   color: steelblue;
}

.project-panel {
    margin-top: 0.5em;
}

/* Styling for table cells */
span.cell-overbudget {
   font-weight: bold;
   color: white;
   background-color: red;
   padding: 2px;
}

span.cell-due {
   font-weight: bold;
}

span.cell-overdue {
   font-weight: bold;
   color: red;
}

.btn-hibiscus {
   background-color: #f73222;
   border-color: #f73222;
   color: #fff;
}

.p_financial {
   color: #85bb65;
}

.dropdown-item-overdue {
   color: red;
   font-weight: bold;
}

/* Fix scrolling */
body.hibiscus {
   padding-top: 54px;
}

div#h_maincontent {
   display: flex;
   /* overflow: hidden; */
   /* height: 100vh; */
   /* margin-top: -54px; */
   /* padding-top: 54px; */
}

div#h_mainlogin {
    height: unset;
}

div.dashboard-panel {
   height: 92vh;
   overflow-y: scroll;
}

/* Styling for the task modal */
#task-modal #task-Description-display {
    /* Chrome lets long links overflow and doesn't wrap them. */
    overflow-x: scroll;
}

/* Add a bar to our blockquotes -- why doesn't Bootstrap handle this? */
blockquote {
   margin-left: 1rem;
   border-left: 3px solid #ccc;
   padding-left: 0.5rem;
}

/* Styling for data tables */
td.details-control {
    background: url('/public/img/details_open.png') no-repeat center center;
    cursor: pointer;
}
tr.shown td.details-control {
    background: url('/public/img/details_close.png') no-repeat center center;
}
td.clock-delete {
    background: url('/public/img/row_delete.png') no-repeat center center;
}
td.dt-project-log-description {
    scale: 80%;
}

/* Styling for reports */
table.dataTable tbody td.userDataChild {
   padding-left: 20%;
   background-color: #eeeeff;
}

table.dataTable tbody td.userDataChild tr {
   background-color: #eeeeff;
}

td.userReportUserName {
   font-weight: bold;
   font-size: 1.1rem;
}

table.dataTable tbody td.clientDataChild {
   padding-left: 20%;
   background-color: #ffeeff;
}

table.dataTable tbody td.clientDataChild tr {
   background-color: #ffeeff;
}

td.clientReportClientName {
   font-weight: bold;
   font-size: 1.1rem;
}

/* Styling for typeahead menus */
.tt-query {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.tt-hint {
  color: #999
}

.tt-menu {
  width: 422px;
  margin: 12px 0;
  padding: 8px 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 8px;
     -moz-border-radius: 8px;
          border-radius: 8px;
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
     -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
          box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

.tt-suggestion {
  padding: 3px 20px;
  font-size: 18px;
  line-height: 24px;
}

.tt-suggestion:hover {
  cursor: pointer;
  color: #fff;
  background-color: #0097cf;
}

.tt-suggestion.tt-cursor {
  color: #fff;
  background-color: #0097cf;

}

.tt-suggestion p {
  margin: 0;
}

span.twitter-typeahead {
   width: 100%;
}

/* Styling for timer window */
#timer-col, #timer-buttons {
   text-align: center;
}

span#timer-time {
   font-size: 4.0em;
   font-weight: bold;
}

input.timer-field {
   width: 30%;
}

/* Additional styling for forms */
label.error {
   color: #ff0000;
   font-size: 0.4rem;
}

/* Styling for search results */
#searchResults .search-result-title {
    font-size: 105%;
    font-weight: bold;
}

#searchResults .search-result-description h2 {
    font-size: 1.2em;
}

/* Styling for file upload stuff. */
.drop-zone {
    max-width: 100%;
    height: 150px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    font-size: 1.2rem;
    cursor: pointer;
    color: #777;
    border: 2px dashed #ccc;
    border-radius: 10px;
}

.drop-zone--over {
    border-style: solid;
    background-color: rgba(0,0,0,0.1);
}

.drop-zone__input {
    display: none;
}
