button {
  touch-action: manipulation;
}
/* カウンター全体のコンテナ */
.counter {
    border: 1px solid #ddd;
    padding: 1rem;
    margin: 1rem auto;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    max-width: 400px;
}

/* カウンターのタイトル */
.counter h2 {
    margin: 0 0 1rem;
    font-size: 1.3rem;
    color: #2c3e50;
}

/* カウント操作ボタンと表示 */
.count-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.count-controls button {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background-color: #3498db;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.count-controls button:hover {
    background-color: #1e70bf;
}

.count-controls p {
    margin: 0;
    font-size: 2rem;
    width: 80px;
    text-align: center;
}

/* リセット・削除ボタン */
.action-buttons {
    margin-top: 0.5rem;
}

.action-buttons button {
    margin: 0 5px;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    background-color: #e74c3c;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.action-buttons button:hover {
    background-color: #c0392b;
}

/* 入力フォームと作成ボタン */
#titleInput {
    padding: 0.5rem;
    font-size: 1rem;
    width: 200px;
    margin-right: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}

button[onclick="addCounter()"] {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    background-color: #2ecc71;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[onclick="addCounter()"]:hover {
    background-color: #27ae60;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
    .count-controls {
        gap: 0.5rem;
    }

    .count-controls button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .count-controls p {
        font-size: 1.5rem;
        width: 60px;
    }

    #titleInput {
        width: 140px;
    }
}