/* カスタムスタイル */

body {
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.stats-card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.stats-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.card {
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.card-header {
    border-bottom: 2px solid #e9ecef;
    font-weight: 600;
}

.table-responsive {
    max-height: 400px;
    overflow-y: auto;
}

.badge {
    font-size: 0.85rem;
    padding: 0.35em 0.65em;
}

/* バッチステータスアニメーション */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.batch-running {
    animation: pulse 2s infinite;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .stats-card {
        margin-bottom: 1rem;
    }

    .navbar-text {
        font-size: 0.85rem;
    }
}

/* スクロールバーのカスタマイズ（Webkit系ブラウザ） */
.table-responsive::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* カードヘッダーアイコン */
.card-header i {
    margin-right: 0.5rem;
}

/* テーブルヘッダー固定 */
.table-responsive thead {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 10;
}

/* ボタンアニメーション */
.btn {
    transition: all 0.3s;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* アラートメッセージ */
.alert {
    border-radius: 0.5rem;
}

/* 最近のポイント付与リスト */
#recent-grants .list-group-item {
    border-left: 3px solid #0d6efd;
    margin-bottom: 0.5rem;
}

/* ローディング状態 */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* グラフエリア */
#weeklyChart {
    max-height: 300px;
}
