/**
 * Style dla frontendu PS Flats Prices
 */

.ps-flats-price-display {
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin: 20px 0;
}

.ps-price-current {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.ps-price-meter {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
}

.ps-price-history-summary {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ps-price-stat {
    flex: 1;
    min-width: 150px;
    padding: 10px;
    background: white;
    border-radius: 6px;
    text-align: center;
}

.ps-price-stat-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.ps-price-stat-value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.ps-price-change-positive {
    color: #198754;
}

.ps-price-change-negative {
    color: #dc3545;
}

/* Responsywność */
@media (max-width: 768px) {
    .ps-price-history-summary {
        flex-direction: column;
    }
    
    .ps-price-current {
        font-size: 20px;
    }
    
    .ps-price-meter {
        font-size: 16px;
    }
}
