/* Kunstpartner Artist CSS - Konsolidiert */

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

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

.kp-artist-profile .form-table {
    width: 100%;
    border-collapse: collapse;
}

.kp-artist-profile .form-table th {
    width: 200px;
    padding: 15px 10px 15px 0;
    vertical-align: top;
    text-align: left;
    font-weight: bold;
}

.kp-artist-profile .form-table td {
    padding: 15px 0;
}

.kp-artist-profile input[type="text"],
.kp-artist-profile input[type="url"],
.kp-artist-profile textarea {
    width: 100%;
    max-width: 400px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.kp-artist-profile textarea {
    resize: vertical;
    min-height: 100px;
}

.kp-artist-profile .button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.kp-artist-profile .button:hover {
    background: #005a87;
}

.kp-artist-artworks {
    margin: 20px 0;
}

.kp-artist-artworks h2 {
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

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

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

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

.kp-artwork-image {
    margin-bottom: 15px;
}

.kp-artwork-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

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

.kp-artwork-price {
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
    margin: 10px 0;
}

.kp-artist-sales {
    margin: 20px 0;
}

.kp-artist-sales h2 {
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.kp-sales-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.kp-sales-table th {
    background: #f9f9f9;
    padding: 15px;
    text-align: left;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #ddd;
}

.kp-sales-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.kp-sales-table tr:last-child td {
    border-bottom: none;
}

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

.kp-artist-earnings h2 {
    color: #333;
    border-bottom: 2px solid #0073aa;
    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: #28a745;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .kp-artworks-grid {
        grid-template-columns: 1fr;
    }
    
    .kp-earnings-stats {
        grid-template-columns: 1fr;
    }
    
    .kp-artist-profile .form-table th {
        width: 100%;
        display: block;
        padding: 5px 0;
    }
    
    .kp-artist-profile .form-table td {
        padding: 5px 0 15px 0;
    }
}