/* Styles pour les personnages */


.character-profile-header {
    position: relative;
    background: linear-gradient(90deg, rgba(12, 45, 72, 0.8), rgba(20, 93, 160, 0.6));
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(220, 225, 227, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.character-profile-header h1 {
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: var(--font-title);
    letter-spacing: 1px;
}

.character-profile-header .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.character-profile-header .character-status {
    box-shadow: none;
}

.character-status {
    margin-top: 1rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
}

.status-pending {
    background-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-validated {
    background-color: rgba(25, 135, 84, 0.2);
    color: #198754;
    border: 1px solid rgba(25, 135, 84, 0.3);
}

.status-rejected {
    background-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.character-info-box {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
    text-align: left;
}

.info-row {
    border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
}

.info-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-label {
    font-weight: bold;
    font-size: 0.85rem;
    color: #6c757d;
    display: inline-block;
    width: 90px;
}

.info-value {
    display: inline-block;
}

.character-info p:empty,
.character-info p:has(br:only-child) {
    display: none;
}

.character-biography p:empty,
.character-biography p:has(br:only-child) {
    display: none;
}

/* Styles pour les onglets */
.character-tabs {
    margin-bottom: 0;
}

.character-tab-item {
    margin-right: 0.5rem;
}

.character-tab-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    color: var(--text-white);
    background-color: transparent;
    border: none;
    border-radius: 0.5rem 0.5rem 0 0;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.character-tab-link:hover {
    color: var(--roleplay-accent);
    background-color: rgba(255, 255, 255, 0.05);
}

.character-tab-link.active {
    color: var(--roleplay-accent);
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid var(--roleplay-accent);
}

.character-tab-link i {
    font-size: 1rem;
    margin-right: 0.5rem;
}

/* Styles pour le contenu des onglets */
.tab-content {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 0.5rem 0.5rem;
    padding: 1.5rem;
}

.tab-pane {
    color: var(--text-white);
} 