.enemy-preview {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 10px;
    margin-top: 10px;
    width: 100%;
    box-sizing: border-box;
}

.enemy-preview h3 {
    margin: 0 0 10px 0;
    color: #DDD;
    font-size: 16px;
    text-align: center;
}

.enemy-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.enemy-preview-item {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    padding: 5px;
    width: calc(50% - 5px);
    box-sizing: border-box;
}

.enemy-icon {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 5px;
}

.enemy-info {
    flex-grow: 1;
    font-size: 12px;
}

.enemy-name {
    color: #CCC;
    font-weight: bold;
}

.enemy-count {
    color: #AAA;
}

.enemies-left {
    text-align: center;
    color: #FFA500;
    font-weight: bold;
    font-size: 14px;
}

