/**
 * FP Character Mini Profile Styles
 * 
 * Styles for character mini profiles in meigen articles
 */

/* Mini profile container */
.fp-character-mini-profile {
    margin: 20px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

/* Mini profile table */
.fp-mini-profile-table {
    width: 100%;
    margin-bottom: 15px;
    border-collapse: collapse;
}

.fp-mini-profile-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.fp-mini-profile-table tbody tr:last-child {
    border-bottom: none;
}

.fp-mini-profile-table th {
    width: 40%;
    padding: 8px 10px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9em;
    color: #333;
    background-color: transparent;
}

.fp-mini-profile-table td {
    padding: 8px 10px;
    font-size: 0.9em;
    color: #666;
}

/* Profile link button */
.fp-profile-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.95em;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.fp-profile-link:hover {
    background-color: #005a87;
    color: #fff !important;
    text-decoration: none;
}

/* Character image spacing adjustment */
.fp-character-image + .fp-character-mini-profile {
    margin-top: 15px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .fp-character-mini-profile {
        padding: 15px;
    }
    
    .fp-mini-profile-table th,
    .fp-mini-profile-table td {
        padding: 6px 8px;
        font-size: 0.85em;
    }
    
    .fp-profile-link {
        display: block;
        text-align: center;
        padding: 12px 20px;
    }
}

/* Dark mode support (if SWELL dark mode is active) */
body.dark-mode .fp-character-mini-profile {
    background-color: #2a2a2a;
    border-color: #444;
}

body.dark-mode .fp-mini-profile-table tbody tr {
    border-color: #444;
}

body.dark-mode .fp-mini-profile-table th {
    color: #e0e0e0;
}

body.dark-mode .fp-mini-profile-table td {
    color: #ccc;
}

body.dark-mode .fp-profile-link {
    background-color: #1a5490;
}

body.dark-mode .fp-profile-link:hover {
    background-color: #144070;
}

/* Integration with existing meigen styles */
.fp-character-group .fp-character-mini-profile {
    max-width: 600px;
}

/* Ensure proper spacing in meigen context */
.fp-character-heading + .fp-character-image + .fp-character-mini-profile {
    margin-top: 15px;
}

/* Print styles */
@media print {
    .fp-character-mini-profile {
        border: 1px solid #000;
        background-color: #fff;
    }
    
    .fp-profile-link {
        display: none;
    }
}