/* 買い物リスト管理用CSS */

/* 購入済みアイテム */
.shopping-checked {
    background-color: #f8f9fa;
}

.shopping-checked .shopping-item-title,
.shopping-checked span {
    opacity: 0.6;
}

/* チェックボタン */
.shopping-check-btn {
    border: none;
    background: none;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.shopping-check-btn:focus {
    outline: none;
    box-shadow: none;
}

.shopping-check-btn:hover {
    opacity: 0.8;
}

/* 一時リストの行 */
.shopping-one-time-row {
    transition: background-color 0.2s ease;
}

/* 定期リストの残数 */
#remaining-count- {
    min-width: 1.5em;
    text-align: center;
}

/* レスポンシブ: スマホでは残数コントロールを折り返す */
@media (max-width: 480px) {
    .list-group-item .flex-wrap > .flex-shrink-0 {
        width: 100%;
        justify-content: flex-end;
    }
}

