/**
 * Analytics Dashboard Styles
 * Styles for analytics dashboard
 */

.analytics-dashboard {
    margin-top: 20px;
}

.analytics-tabs {
    border-bottom: 1px solid #ccd0d4;
    margin-bottom: 20px;
}

.analytics-tab {
    display: inline-block;
    padding: 10px 15px;
    margin-right: 5px;
    background: #f1f1f1;
    border: 1px solid #ccd0d4;
    border-bottom: none;
    text-decoration: none;
    color: #555;
    border-radius: 4px 4px 0 0;
}

.analytics-tab.nav-tab-active {
    background: white;
    border-bottom: 1px solid white;
    margin-bottom: -1px;
    color: #000;
}

.analytics-content {
    background: white;
    border: 1px solid #ccd0d4;
    border-radius: 0 4px 4px 4px;
    padding: 20px;
}

.analytics-metric {
    display: inline-block;
    margin: 10px;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    min-width: 120px;
}

.analytics-metric .metric-value {
    font-size: 24px;
    font-weight: bold;
    color: #0073aa;
    display: block;
}

.analytics-metric .metric-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    margin-top: 5px;
}

.analytics-chart {
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.analytics-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.analytics-table th,
.analytics-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.analytics-table th {
    background: #f1f1f1;
    font-weight: bold;
}

.analytics-table tr:hover {
    background: #f9f9f9;
}

.seo-score {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: bold;
    color: white;
}

.seo-score.excellent {
    background: #46b450;
}

.seo-score.good {
    background: #00a0d2;
}

.seo-score.fair {
    background: #ffb900;
}

.seo-score.poor {
    background: #dc3232;
}
