/*file: ./tax-years/multi-year/css/footer.css*/
body.demo {
  font-family: sans-serif;
}

.floating-footer {
  position: fixed;
  bottom: 60px;
  right: 20px;
  width: 360px;
  background: #f8f8f8;
  border: 1px solid #ccc;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  border-radius: 6px;
  z-index: 9999;
  font-size: 0.9em;
  user-select: none;
}
.footer-header {
  background: #005580;
  color: white;
  padding: 5px 10px;
  font-weight: bold;
  cursor: move;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 6px 6px 0 0;
}
.footer-header button {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1em;
  margin-left: 6px;
}
.footer-body {
  padding: 10px;
}
.footer-details {
  margin-top: 10px;
  font-size: 0.85em;
  color: #333;
  transition: max-height 0.3s ease;
}
.footer-details.hidden {
  display: none;
}
.footer-toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  background: #005580;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.8em;
}
.hidden {
  display: none;
}
.summary-row {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.footer-label-cell {
  width: 80px;
  font-weight: bold;
}
.footer-value-cell {
  width: 70px;
  text-align: right;
  font-family: monospace;
}
