/**
 * HTM001L メインメニュー スタイルシート
 * HT（ハンディターミナル）向けモバイルファースト設計
 */

/* リセットとベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #f5f5f5;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

/* コンテナ */
.ht-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

/* ヘッダー */
.ht-header {
    flex-shrink: 0;
    padding: 12px 16px;
    background: linear-gradient(to right, #006f5e, #005a4b);
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ht-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 2px;
}

.ht-user-info {
    font-size: 12px;
    opacity: 0.9;
}

/* メインコンテンツ */
.ht-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* メニューグリッド */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 4px 0;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    padding: 12px 8px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    -webkit-tap-highlight-color: transparent;
}

.menu-item:active {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.menu-icon {
    font-size: 28px;
    margin-bottom: 6px;
    line-height: 1;
}

.menu-label {
    font-size: 14px;
    text-align: center;
    line-height: 1.2;
}

/* メニュー項目の色（PC共通カラーパレット基調） */
.menu-inbound {
    background-color: #006f5e;
}

.menu-putaway {
    background-color: #008060;
}

.menu-picking {
    background-color: #005a4b;
}

.menu-shipping {
    background-color: #00af93;
}

.menu-inventory {
    background-color: #0091af;
}

.menu-stocktake {
    background-color: #006888;
}

.menu-worklog {
    background-color: #2c3e50;
}

/* フッター */
.ht-footer {
    flex-shrink: 0;
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.ht-button {
    flex: 1;
    min-height: 48px;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.ht-button-tertiary {
    background-color: #fff;
    color: #333;
    border: 2px solid #ced4da;
}

.ht-button-tertiary:active {
    background-color: #e9ecef;
}
