/*
 * style.css
 * ネームタグ受注フォームの基本的なスタイル
 * (Tailwind CSSを使用しているため、最小限のスタイル)
 */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

/* スナップボタンのスタイル */
.snap-button {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ccc;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
}

/* フォーム要素のフォーカススタイル */
input:focus, select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

/* レスポンシブ調整 */
@media (max-width: 640px) {
    .p-6.sm:p-8 {
        padding: 1.5rem;
    }
}
