/* =============================================
   style_kakko2.css (kakko_adjuster 固有レイアウト)
   ============================================= */

.input-output-wrapper {
  display: flex;
  gap: 20px;
  margin: 25px 0;
}

.input-output-wrapper section {
  flex: 1;
  min-width: 0; /* Flexboxの縮小バグ防止 */
  display: flex;
  flex-direction: column;
}

.input-output-wrapper h2 {
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 5px;
}

/* ボタンの並び調整 */
section button + button {
  margin-left: 8px;
}

/* ログエリアの視認性向上 */
.log-list {
  background: #f9f9f9;
  border: 1px solid #ddd;
  max-height: 300px;
  overflow-y: auto;
  padding: 10px;
  border-radius: 4px;
  font-size: 0.85rem;
}

.log-entry {
  padding: 5px 0;
  border-bottom: 1px dotted #ccc;
}

/* モバイル対応（768px以下で縦並び） */
@media (max-width: 768px) {
  .input-output-wrapper {
    flex-direction: column;
  }
  
  section button {
    width: 100%;
    margin-left: 0 !important;
    margin-bottom: 10px;
  }
}