/* =========================================================
   PDF Merge 専用CSS
   共通スタイルに追加する調整
   ========================================================= */

/* プログレスバーを通常より太くする (結合処理中) */
.progress-bar.thick {
  height: 18px; /* 通常より太め */
}

/* 結合処理中に表示するのくるくる回るスピナー */
.spinner {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 4px solid #ccc;
  border-top-color: #e33;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 10px auto;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
