/* 横スクロールさせたい要素の親要素 */
.box {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}

/*横スクロール要素*/
.item {
  display: inline-block;
}

/*分析ページのテーブル　sales_support_analysis*/
.drink-data-row {
  font-size: 0.8em; /* 文字を小さく */
  text-align: right; /* 右寄せ */
  color: gray; /* 色をグレーに */
}

/*calcs  カレーの量ページのエラー*/
#erreur_qt_msg {
    display: none;
    color: #ff0000;
    font-weight: bold;
    font-size: 24px;
    background-color: #ffeb3b;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    text-align: center;
    border: 3px solid #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.warning-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.warning-body {
    font-size: 22px;
}

.fa-exclamation-triangle {
    font-size: 32px;
    margin-bottom: 10px;
}
.narrow-column {
    width: 12px !important;
    padding: 2px !important;
    text-align: left;
}

.card-data-column {
    width: 15px !important;
    padding: 2px !important;
    text-align: left;
}

.finance-table {
    font-size: 10px;
    white-space: nowrap;  /* テーブルを横スクロールさせる */
    min-width: 100%;
}

.table-container {
    overflow-x: auto;  /* スマホでも横スクロール可能に */
    -webkit-overflow-scrolling: touch;  /* iOSでのスムーズスクロール */
}
