/* 統一ボタンスタイル - 全ページ共通 */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

/* プライマリボタン（メインアクション） */
.btn-primary {
    background: #2c5aa0;
    color: white;
}

.btn-primary:hover {
    background: #234a87;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44,90,160,0.3);
}

/* セカンダリボタン（サブアクション） */
.btn-secondary {
    background: white;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.btn-secondary:hover {
    background: #f1f5f9;
}

/* 成功ボタン（保存・確定など） */
.btn-success {
    background: #10b981;
    color: white;
}

.btn-success:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}

/* 危険ボタン（削除など） */
.btn-danger {
    background: #ef4444;
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239,68,68,0.3);
}

/* 警告ボタン */
.btn-warning {
    background: #f59e0b;
    color: white;
}

.btn-warning:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}

/* 情報ボタン */
.btn-info {
    background: #3b82f6;
    color: white;
}

.btn-info:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59,130,246,0.3);
}

/* ライトボタン */
.btn-light {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #e2e8f0;
}

.btn-light:hover {
    background: #e2e8f0;
}

/* ボタンサイズバリエーション */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ボタングループ */
.btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* 無効状態 */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* 全幅ボタン */
.btn-block {
    width: 100%;
    display: block;
}
