/* Główne style dla strony statystyk */
.statystyki-main {
    background-color: #fff;
    padding: 30px 0;
    min-height: calc(100vh - 200px);
}

.statystyki-header {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 20px;
    text-align: center;
}

.statystyki-header h1 {
    font-size: 36px;
    color: #000;
    margin-bottom: 10px;
}

.statystyki-subheader p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.statystyki-section {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}

.statystyki-container {
    width: 100%;
}

.statystyki-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 20px;
}

.statystyki-col {
    flex: 1;
    min-width: 300px;
}

.statystyki-title {
    font-size: 24px;
    color: #000;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.statystyki-card {
    background-color: #f9f9f9;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.statystyki-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.statystyki-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.statystyki-card-header i {
    font-size: 24px;
    color: #d00;
    margin-right: 10px;
}

.statystyki-card-header h3 {
    font-size: 18px;
    color: #000;
    margin: 0;
}

.statystyki-card-content {
    padding-left: 34px;
}

.statystyki-value {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
}

.statystyki-change {
    font-size: 14px;
    margin-bottom: 10px;
}

.statystyki-change.positive {
    color: #28a745;
}

.statystyki-change.negative {
    color: #dc3545;
}

.statystyki-description {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.statystyki-full-width {
    width: 100%;
    margin-top: 40px;
}

.statystyki-chart-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.statystyki-chart {
    flex: 1;
    min-width: 300px;
    height: 250px;
    background-color: #f9f9f9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.chart-placeholder {
    text-align: center;
    color: #999;
}

.chart-placeholder i {
    font-size: 50px;
    margin-bottom: 15px;
    display: block;
    color: #d00;
}

.chart-placeholder p {
    font-size: 16px;
    margin: 0;
}

.statystyki-update-info {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #666;
    text-align: right;
}

.statystyki-update-info i {
    margin-right: 5px;
    color: #d00;
}