/* 注文ダッシュボード用スタイル */
.dashboard-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    max-width: 100%;
}

.dashboard-title {
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

.summary-section {
    margin-bottom: 20px;
}

.summary-card {
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
}

.card-title {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.card-value {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.card-label {
    color: #666;
    font-size: 13px;
}

.card-prev-value {
    font-size: 13px;
    color: #333;
}

.card-yoy-value {
    font-size: 13px;
    font-weight: 600;
    color: #2196F3;
}

.control-panel {
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
}

.redash-card {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
}

.graph-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 0;
    font-weight: 600;
}

/* レスポンシブデザイン */
@media (min-width: 992px) {
    .graphs-section {
        grid-template-columns: 1fr 1fr;
    }
}

/* 事業計画ダッシュボードのスタイル */
.business-plan-table {
    width: 100%;
    font-size: 0.9rem;
    border-collapse: collapse;
}

.business-plan-table th,
.business-plan-table td {
    padding: 8px;
    border: 1px solid #dee2e6;
}

.business-plan-table th {
    background-color: #f8f9fa;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
}

.business-plan-table tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

/* サイドバーのスタイル */
.sidebar {
    background-color: #f8f9fa;
    padding: 15px;
    height: 100%;
    border-right: 1px solid #dee2e6;
}

.sidebar-heading {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
    color: #333;
}

.sidebar-nav {
    margin-bottom: 20px;
}

.sidebar-nav .nav-link {
    color: #333;
    padding: 8px 15px;
    border-radius: 4px;
    margin-bottom: 5px;
}

.sidebar-nav .nav-link:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

.sidebar-nav .nav-link i {
    color: #5a6268;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .business-plan-table {
        font-size: 0.8rem;
    }
    
    .business-plan-table th,
    .business-plan-table td {
        padding: 5px;
    }
} 