/**
 * Frontend-Styles für Marketingclub Mitglieder Profile
 *
 * @package MCMP
 */

/* Profil-Anzeige */
.mcmp-profil {
    max-width: 1200px;
    margin: 0 auto;
}

.mcmp-profil-header {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.mcmp-profil-bild {
    flex-shrink: 0;
}

.mcmp-profil-bild img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.mcmp-profil-info h1 {
    margin: 0 0 10px 0;
}

.mcmp-profil-position {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

/* Mitglieder-Liste */
.mcmp-mitglieder-liste {
    max-width: 1200px;
    margin: 0 auto;
}

.mcmp-suche {
    margin-bottom: 30px;
}

.mcmp-suche input[type="text"] {
    width: 100%;
    max-width: 500px;
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
}

.mcmp-mitglieder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.mcmp-mitglied-karte {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    transition: box-shadow 0.3s;
}

.mcmp-mitglied-karte:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.mcmp-mitglied-karte img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.mcmp-mitglied-karte h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.mcmp-mitglied-karte .position {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.mcmp-mitglied-karte .firma {
    color: #999;
    font-size: 13px;
}

/* Profil-Editor */
.mcmp-profil-editor {
    max-width: 800px;
}

.mcmp-form-group {
    margin-bottom: 20px;
}

.mcmp-form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.mcmp-form-group input[type="text"],
.mcmp-form-group input[type="email"],
.mcmp-form-group input[type="url"],
.mcmp-form-group textarea,
.mcmp-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.mcmp-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Warnung */
.mcmp-warnung {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
}

/* Statistik */
.mcmp-statistik {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.mcmp-statistik h3 {
    margin: 0 0 15px 0;
}

.mcmp-statistik ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mcmp-statistik li {
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
}

.mcmp-statistik li:last-child {
    border-bottom: none;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .mcmp-profil-header {
        flex-direction: column;
        text-align: center;
    }

    .mcmp-profil-bild img {
        width: 150px;
        height: 150px;
    }

    .mcmp-mitglieder-grid {
        grid-template-columns: 1fr;
    }
}
