/* ==================== CHARACTER PANEL WITH STATUS EFFECTS ==================== */

.characters-section {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(74, 103, 65, 0.3);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.characters-section h3 {
    color: #4a6741;
    font-size: 1.2rem;
    margin: 0 0 12px 0;
    font-family: 'Courier New', monospace;
}

.character-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.character-card {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(74, 103, 65, 0.3);
    border-radius: 8px;
    padding: 12px;
    transition: all 0.2s;
}

.character-card:hover {
    background: rgba(74, 103, 65, 0.1);
    border-color: rgba(74, 103, 65, 0.6);
}

.character-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.character-icon {
    font-size: 24px;
    width: 32px;
    text-align: center;
}

.character-name {
    font-weight: bold;
    color: #fff;
    font-size: 1rem;
}

.character-status {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.character-skills {
    color: #aaa;
    font-size: 0.8rem;
}

/* ==================== STATUS EFFECTS ==================== */

.status-effects {
    display: flex;
    gap: 4px;
    margin-left: auto;
}

.status-effect {
    font-size: 20px;
    cursor: help;
    transition: transform 0.2s;
    outline: none;
}

.status-effect.debuff {
    filter: grayscale(0.3) brightness(0.9);
}

.status-effect.buff {
    filter: brightness(1.2);
}

.status-effect:hover,
.status-effect:focus {
    transform: scale(1.3);
}

/* Tooltip styling (browser native) */
.status-effect[title] {
    position: relative;
}

