/* カスタムスタイル */

body {
    background-color: #f8f9fa;
}

.card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: none;
    margin-bottom: 1.5rem;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    font-weight: 600;
}

.navbar-brand {
    font-weight: 600;
}

.table th {
    border-top: none;
    font-weight: 600;
    color: #495057;
}

.badge {
    font-weight: 500;
}

/* 統計カードのホバー効果 */
.card.text-white {
    transition: transform 0.2s;
}

.card.text-white:hover {
    transform: translateY(-5px);
}

/* ページネーション */
.pagination {
    margin-top: 1rem;
}

/* グラフコンテナ */
canvas {
    max-height: 400px;
}

/* ログインページ用スタイル */
.login-card {
    max-width: 420px;
    margin: 0 auto;
}

/* ダッシュボード統計カード */
.stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.stat-card .card-footer {
    background-color: rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card .stat-icon {
    font-size: 2.5rem;
    opacity: 0.8;
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
}

/* カスタム背景色 */
.bg-purple {
    background-color: #6f42c1 !important;
}

.bg-orange {
    background-color: #fd7e14 !important;
}

.bg-teal {
    background-color: #20c997 !important;
}

.bg-pink {
    background-color: #d63384 !important;
}

/* チャートコンテナ */
.chart-container {
    position: relative;
    height: 300px;
}

/* クイックアクセスボタン */
.btn-outline-primary:hover,
.btn-outline-secondary:hover,
.btn-outline-info:hover,
.btn-outline-dark:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}




