/**
 * CUSTOM CSS FOR MSF OCBA HMIS SURVEILLANCE
 * Server: https://surveillance.hmisocba.msf.es/
 *
 * Paste this into the CSS tab of the Custom JS/CSS App.
 */

/* --- Fill with Zeros button --- */
.fill-zero-btn {
  display: inline-block;
  margin: 8px 4px;
  padding: 6px 16px;
  background-color: #4a90d9;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.fill-zero-btn:hover {
  background-color: #276696;
}

.fill-zero-btn:active {
  background-color: #1b4a6e;
}

/* --- Tally Sheet print styles --- */
@media screen {
  .msfocba-show-on-print {
    display: none !important;
  }
}

@media print {
  .msfocba-show-on-print {
    display: block !important;
  }

  #header,
  #leftBar,
  #actions,
  .ui-tabs-nav,
  .fill-zero-btn {
    display: none !important;
  }

  .ui-tabs .ui-tabs-panel {
    display: block !important;
  }

  #contentDiv {
    width: 100% !important;
    margin: 0 !important;
  }
}
