.llms-txt-generator-dashboard {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

/* Period Selector */
.period-selector {
    margin: 20px 0;
    text-align: right;
}

.period-selector select {
    padding: 8px;
    font-size: 14px;
    min-width: 150px;
    border-radius: 4px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-card h3 {
    margin: 0 0 10px 0;
    color: #1d2327;
    font-size: 14px;
    font-weight: 600;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #2271b1;
}

/* Charts Grid */
.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.chart-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    min-height: 300px;
}

.chart-container h3 {
    margin: 0 0 20px 0;
    color: #1d2327;
    font-size: 16px;
    font-weight: 600;
}

canvas {
    width: 100% !important;
    height: 250px !important;
}

/* Responsive Design */
@media screen and (max-width: 782px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .charts-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 15px;
    }

    .stat-value {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .period-selector {
        text-align: left;
    }
}

/* Premium Notice */
.notice-info {
    margin: 20px 0;
    padding: 15px;
    border-left-color: #2271b1;
}

.notice-info p {
    font-size: 14px;
    margin: 0;
}

.notice-info a {
    color: #2271b1;
    text-decoration: none;
    font-weight: 500;
}

.notice-info a:hover {
    text-decoration: underline;
} 