﻿/* 通常画面では画面用だけ表示、印刷時は印刷用だけ表示 */
.screen-only {
    display: block;
}

.print-only {
    display: none !important;
}

.history-page:not(.current) {
    display: none;
}

.history-page.current {
    display: block;
}

/* 印刷プレビュー／印刷時のみ適用 */
@media print {
  /* 画面用を隠す */
  .screen-only { display: none !important; }
  /* 印刷用を表示 */
  .print-only  { display: block !important; }
  /* 印刷不要要素（ボタンなど）を隠す */
  .no-print    { display: none !important; }
}

.line-container {
    display: flex;
    align-items: center;
}

.line-container button {
    margin-bottom: 1rem;
    margin-left: auto;
}

.line-container .paging {
    margin-left: auto;
}

.btn-print {
  width: 160px;
  height: 40px;
  font-size: 1.6rem;
  border-radius: 30px;
  font-weight: bold;
}
