/* Kunstpartner Invest4Art CSS - Konsolidiert */

.kp-investor-profile {
    max-width: 800px;
    margin: 20px 0;
}

.kp-investor-profile h2 {
    color: #333;
    border-bottom: 2px solid #dc3545;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.kp-investor-investments {
    margin: 20px 0;
}

.kp-investor-investments h2 {
    color: #333;
    border-bottom: 2px solid #dc3545;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.kp-investor-earnings {
    margin: 20px 0;
}

.kp-investor-earnings h2 {
    color: #333;
    border-bottom: 2px solid #dc3545;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.kp-earnings-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.kp-earnings-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.kp-earnings-card h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
}

.kp-earnings-amount {
    font-size: 24px;
    font-weight: bold;
    color: #dc3545;
    margin: 0;
}

/* Invest4Art spezifische Styles */
.kp-investor-info {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.kp-investor-info h3 {
    color: #dc3545;
    margin: 0 0 15px 0;
}

.kp-investor-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.kp-investor-stat {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
}

.kp-investor-stat h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 14px;
}

.kp-investor-stat .stat-number {
    font-size: 20px;
    font-weight: bold;
    color: #dc3545;
}

/* Investment Grid */
.kp-investments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.kp-investment-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.kp-investment-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.kp-investment-item h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
}

.kp-investment-amount {
    font-size: 18px;
    font-weight: bold;
    color: #dc3545;
    margin: 10px 0;
}

.kp-investment-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.kp-investment-status.active {
    background: #d4edda;
    color: #155724;
}

.kp-investment-status.pending {
    background: #fff3cd;
    color: #856404;
}

.kp-investment-status.completed {
    background: #d1ecf1;
    color: #0c5460;
}

/* Responsive */
@media (max-width: 768px) {
    .kp-earnings-stats,
    .kp-investor-stats,
    .kp-investments-grid {
        grid-template-columns: 1fr;
    }
}